aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2014-02-13 08:17:26 +0100
committerHans Bolinder <[email protected]>2014-02-13 08:17:26 +0100
commitf5d45cf6e21ee115f877a193ce57152779438a88 (patch)
tree955df85fe95b7254ff0ce855b77cd7f51b763ec5
parentaa465d4d5b593bef61c20b670536dfe4cb3fa545 (diff)
parent4b6a863334ef827172187b50bc823882e8a3ce22 (diff)
downloadotp-f5d45cf6e21ee115f877a193ce57152779438a88.tar.gz
otp-f5d45cf6e21ee115f877a193ce57152779438a88.tar.bz2
otp-f5d45cf6e21ee115f877a193ce57152779438a88.zip
Merge branch 'hb/refman/type_fix'
* hb/refman/type_fix: [refmanual] Fix List in definition of pre-defined types
-rw-r--r--system/doc/reference_manual/typespec.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/system/doc/reference_manual/typespec.xml b/system/doc/reference_manual/typespec.xml
index 635476737d..71aec732cf 100644
--- a/system/doc/reference_manual/typespec.xml
+++ b/system/doc/reference_manual/typespec.xml
@@ -4,7 +4,7 @@
<chapter>
<header>
<copyright>
- <year>2003</year><year>2013</year>
+ <year>2003</year><year>2014</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
@@ -118,15 +118,15 @@
| fun((TList) -> Type)
Integer :: integer()
- | Erlang_Integer %% ..., -1, 0, 1, ... 42 ...
- | Erlang_Integer..Erlang_Integer %% specifies an integer range
+ | Erlang_Integer %% ..., -1, 0, 1, ... 42 ...
+ | Erlang_Integer..Erlang_Integer %% specifies an integer range
- List :: list(Type) %% Proper list ([]-terminated)
- | improper_list(Type1, Type2) %% Type1=contents, Type2=termination
- | maybe_improper_list(Type1, Type2) %% Type1 and Type2 as above
- | nonempty_list(Type) %% Proper non-empty list
+ List :: list(Type) %% Proper list ([]-terminated)
+ | maybe_improper_list(Type1, Type2) %% Type1=contents, Type2=termination
+ | nonempty_improper_list(Type1, Type2) %% Type1 and Type2 as above
+ | nonempty_list(Type) %% Proper non-empty list
- Tuple :: tuple() %% stands for a tuple of any size
+ Tuple :: tuple() %% stands for a tuple of any size
| {}
| {TList}