Skip to content

Commit 90b2192

Browse files
Apply suggestions from code review
Co-authored-by: Richard Sill <[email protected]>
1 parent 106ab77 commit 90b2192

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

modules/ROOT/pages/extending-neo4j/aggregation-functions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ When the aggregation is done, the method annotated with `@UserAggregationResult`
3535
Particular things to note:
3636

3737
* All functions are annotated with `@UserAggregationFunction`.
38-
* The aggregation function name is required to be namespaced and is not allowed in one of the reserved namespaces.
39-
* If a user defined aggregation function is registered with the same name as a built-in function in a deprecated namespace the built-in function will be shadowed.
38+
* The aggregation function name must be namespaced and is not allowed in reserved namespaces.
39+
* If a user-defined aggregation function is registered with the same name as a built-in function in a deprecated namespace, the built-in function is shadowed.
4040

4141

4242
See xref:extending-neo4j/values-and-types.adoc[] for details on values and types.

modules/ROOT/pages/extending-neo4j/functions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ But unlike procedures, they are annotated with `@UserFunction` and return a sing
3333
Particular things to note:
3434

3535
* All functions are annotated with `@UserFunction`.
36-
* The function name is required to be namespaced and is not allowed in one of the reserved namespaces.
37-
* If a function is registered with the same name as a built-in function in a deprecated namespace the built-in function will be shadowed.
36+
* The function name must be namespaced and is not allowed in reserved namespaces.
37+
* If a function is registered with the same name as a built-in function in a deprecated namespace, the built-in function is shadowed.
3838

3939
See xref:extending-neo4j/values-and-types.adoc[] for details on values and types.
4040

modules/ROOT/pages/extending-neo4j/procedures.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ Particular things to note:
143143
* The procedure annotation can take three optional arguments: `name`, `mode`, and `eager`.
144144
** `name` is used to specify a different name for the procedure than the default generated, which is `class.path.nameOfMethod`.
145145
If `mode` is specified, `name` must be specified as well.
146-
** `name` is required to be namespaced and is not allowed in one of the reserved namespaces.
147-
** If a procedure is registered with the same name as a built-in procedure in a deprecated namespace the built-in procedure will be shadowed.
146+
** `name` must be namespaced and is not allowed in reserved namespaces.
147+
** If a procedure is registered with the same name as a built-in procedure in a deprecated namespace, the built-in procedure is shadowed.
148148
** `mode` is used to declare the types of interactions that the procedure performs.
149149
A procedure fails if it attempts to execute database operations that violate its mode.
150150
The default `mode` is `READ`.

0 commit comments

Comments
 (0)