diff --git a/modules/ROOT/pages/syntax/naming.adoc b/modules/ROOT/pages/syntax/naming.adoc index 23108b2f3..d7cb7d000 100644 --- a/modules/ROOT/pages/syntax/naming.adoc +++ b/modules/ROOT/pages/syntax/naming.adoc @@ -62,8 +62,8 @@ Some techniques to mitigate this are: Here are the recommended naming conventions: |=== -| Node labels | Camel-case, beginning with an upper-case character | `:VehicleOwner` rather than `:vehicle_owner` etc. -| Relationship types | Upper-case, using underscore to separate words | `:OWNS_VEHICLE` rather than `:ownsVehicle` etc. +| Node labels | Pascal case, which is similar to camel case but beginning with an upper-case character | `:VehicleOwner` rather than `:vehicle_owner` etc. +| Relationship types | Upper case, using underscore to separate words | `:OWNS_VEHICLE` rather than `:ownsVehicle` etc. |=== [[identifier-length-limit]]