Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions modules/ROOT/pages/syntax/naming.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down