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
7 changes: 4 additions & 3 deletions _pages/Salesforce-Naming-Conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -481,14 +481,15 @@ The following are examples of Apex type naming that should not be used

Type Name | Reason
-----------|:------
map Contacts | "map", “id”, and “string” do not start with an uppercase letter.
String Contact | “string” does not start with an uppercase letter.
map Contacts | "map" does not start with an uppercase letter
string Contact | “string” does not start with an uppercase letter

The following are examples of the naming convention that will be used

Type Name | Reason
-----------|:------
Map Contacts | Starts with an uppercase letter String Contact Starts with an uppercase letter
Map Contacts | Starts with an uppercase letter
String Contact | Starts with an uppercase letter

____

Expand Down