summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDanil Yarantsev <tiberiumk12@gmail.com>2021-03-02 12:26:07 +0300
committerGitHub <noreply@github.com>2021-03-02 10:26:07 +0100
commit4b53f697faa8f7f65ada0e7ea00acf86c76ed92f (patch)
tree717091dbc39db19ab219f3a3f5081bccb1b4ccbf
parenteabb9b79b2decedbe867a6a515feb77c9e3d02a1 (diff)
downloadNim-4b53f697faa8f7f65ada0e7ea00acf86c76ed92f.tar.gz
Remove the note about old naming conventions (#17222)
-rw-r--r--doc/nep1.rst9
1 files changed, 0 insertions, 9 deletions
diff --git a/doc/nep1.rst b/doc/nep1.rst
index 21dc81835..4a31524f6 100644
--- a/doc/nep1.rst
+++ b/doc/nep1.rst
@@ -62,15 +62,6 @@ Spacing and Whitespace Conventions
 Naming Conventions
 ------------------
 
-Note: While the rules outlined below are the *current* naming conventions,
-these conventions have not always been in place. Previously, the naming
-conventions for identifiers followed the Pascal tradition of prefixes which
-indicated the base type of the identifier - PFoo for pointer and reference
-types, TFoo for value types, EFoo for exceptions, etc. Though this has since
-changed, there are many places in the standard library which still use this
-convention. Such style remains in place purely for legacy reasons, and will be
-changed in the future.
-
 - Type identifiers should be in PascalCase. All other identifiers should be in
   camelCase with the exception of constants which **may** use PascalCase but
   are not required to.