diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-12-12 14:50:28 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-12-12 17:11:54 +0100 |
commit | 74f4aa2897e7b2a3bac688d808b9b396fc35d1aa (patch) | |
tree | 8790ac3abe73760ad14c6e46f2664be95a2dca59 /system | |
parent | 0d016cdce1c688335dc265056137890d7a7850c9 (diff) | |
download | otp-74f4aa2897e7b2a3bac688d808b9b396fc35d1aa.tar.gz otp-74f4aa2897e7b2a3bac688d808b9b396fc35d1aa.tar.bz2 otp-74f4aa2897e7b2a3bac688d808b9b396fc35d1aa.zip |
doc: Change "stands for" to "denotes" in typespec
Diffstat (limited to 'system')
-rw-r--r-- | system/doc/reference_manual/typespec.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/doc/reference_manual/typespec.xml b/system/doc/reference_manual/typespec.xml index 1a3669c736..c117b6e1d0 100644 --- a/system/doc/reference_manual/typespec.xml +++ b/system/doc/reference_manual/typespec.xml @@ -63,7 +63,7 @@ Types consist of, and are built from, a set of predefined types, for example, <c>integer()</c>, <c>atom()</c>, and <c>pid()</c>. Predefined types represent a typically infinite set of Erlang terms that - belong to this type. For example, the type <c>atom()</c> stands for the + belong to this type. For example, the type <c>atom()</c> denotes the set of all Erlang atoms. </p> <p> @@ -131,11 +131,11 @@ | nonempty_improper_list(Type1, Type2) %% Type1 and Type2 as above | nonempty_list(Type) %% Proper non-empty list - Map :: map() %% stands for a map of any size - | #{} %% stands for the empty map + Map :: map() %% denotes a map of any size + | #{} %% denotes the empty map | #{PairList} - Tuple :: tuple() %% stands for a tuple of any size + Tuple :: tuple() %% denotes a tuple of any size | {} | {TList} |