Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.
Merged
Prev Previous commit
Next Next commit
Wrong AQL function...
  • Loading branch information
Simran-B committed Jan 28, 2020
commit fbb7b1ee3111f4f043cfc8d3e3056cbbcc4b7296
2 changes: 1 addition & 1 deletion 3.7/aql/functions-array.md
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ RETURN REPLACE_NTH( [ "a", "b", "c" ], 3 , "z")
{% aqlexample examplevar="examplevar" type="type" query="query" bind="bind" result="result" %}
@startDocuBlockInline aqlArrayReplaceNth_4
@EXAMPLE_AQL{aqlArrayReplaceNth_4}
RETURN REMOVE_NTH( [ "a", "b", "c" ], 6, "z", "y" )
RETURN REPLACE_NTH( [ "a", "b", "c" ], 6, "z", "y" )
@END_EXAMPLE_AQL
@endDocuBlock aqlArrayReplaceNth_4
{% endaqlexample %}
Expand Down