summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/l3kernel/l3prop.dtx
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2022-12-18 03:04:42 +0000
committerNorbert Preining <norbert@preining.info>2022-12-18 03:04:42 +0000
commit81dce26929e98696f622283b42f25c643dcfe565 (patch)
tree7b1172ee9247eab226e5d425bc8d42ddea0be53b /macros/latex/contrib/l3kernel/l3prop.dtx
parent7b88c25271448cb717bea52abc52e2c8ec033dd9 (diff)
CTAN sync 202212180304
Diffstat (limited to 'macros/latex/contrib/l3kernel/l3prop.dtx')
-rw-r--r--macros/latex/contrib/l3kernel/l3prop.dtx34
1 files changed, 17 insertions, 17 deletions
diff --git a/macros/latex/contrib/l3kernel/l3prop.dtx b/macros/latex/contrib/l3kernel/l3prop.dtx
index c124459362..0cc1c3730b 100644
--- a/macros/latex/contrib/l3kernel/l3prop.dtx
+++ b/macros/latex/contrib/l3kernel/l3prop.dtx
@@ -43,13 +43,13 @@
% }^^A
% }
%
-% \date{Released 2022-11-02}
+% \date{Released 2022-12-17}
%
% \maketitle
%
% \begin{documentation}
%
-% \LaTeX3 implements a \enquote{property list} data type, which contain
+% \pkg{expl3} implements a \meta{property list} data type, which contain
% an unordered list of entries each of which consists of a \meta{key} and
% an associated \meta{value}. The \meta{key} and \meta{value} may both
% be any \meta{balanced text}, the \meta{key} is processed using
@@ -117,13 +117,13 @@
% \prop_gset_from_keyval:Nn, \prop_gset_from_keyval:cn,
% }
% \begin{syntax}
-% \cs{prop_set_from_keyval:Nn} \meta{prop~var}
+% \cs{prop_set_from_keyval:Nn} \meta{property list}
% \{
% \meta{key1} |=| \meta{value1} |,|
% \meta{key2} |=| \meta{value2} |,| \ldots{}
% \}
% \end{syntax}
-% Sets \meta{prop~var} to contain key--value pairs given in the second
+% Sets \meta{property list} to contain key--value pairs given in the second
% argument. If duplicate keys appear only the last of the values is kept.
%
% Spaces are trimmed around every \meta{key} and every \meta{value},
@@ -142,14 +142,14 @@
% \begin{function}[added = 2017-11-28, updated = 2021-11-07]
% {\prop_const_from_keyval:Nn, \prop_const_from_keyval:cn}
% \begin{syntax}
-% \cs{prop_const_from_keyval:Nn} \meta{prop~var}
+% \cs{prop_const_from_keyval:Nn} \meta{property list}
% \{
% \meta{key1} |=| \meta{value1} |,|
% \meta{key2} |=| \meta{value2} |,| \ldots{}
% \}
% \end{syntax}
-% Creates a new constant \meta{prop~var} or raises an error if the
-% name is already taken. The \meta{prop~var} is set globally to
+% Creates a new constant \meta{property list} or raises an error if the
+% name is already taken. The \meta{property list} is set globally to
% contain key--value pairs given in the second argument, processed in
% the way described for \cs{prop_set_from_keyval:Nn}. If duplicate
% keys appear only the last of the values is kept.
@@ -209,12 +209,12 @@
% \prop_gconcat:NNN, \prop_gconcat:ccc
% }
% \begin{syntax}
-% \cs{prop_concat:NNN} \meta{prop~var_1} \meta{prop~var_2} \meta{prop~var_3}
+% \cs{prop_concat:NNN} \meta{property list_1} \meta{property list_2} \meta{property list3}
% \end{syntax}
-% Combines the key--value pairs of \meta{prop~var_2} and
-% \meta{prop~var_3}, and saves the result in \meta{prop~var_1}. If a
-% key appears in both \meta{prop~var_2} and \meta{prop~var_3} then the
-% last value, namely the value in \meta{prop~var_3} is kept.
+% Combines the key--value pairs of \meta{property list_2} and
+% \meta{property list_3}, and saves the result in \meta{pproperty list_1}. If a
+% key appears in both \meta{property list_2} and \meta{property list_3} then the
+% last value, namely the value in \meta{property list_3} is kept.
% \end{function}
%
% \begin{function}[added = 2021-05-16, updated = 2021-11-07]
@@ -223,22 +223,22 @@
% \prop_gput_from_keyval:Nn, \prop_gput_from_keyval:cn,
% }
% \begin{syntax}
-% \cs{prop_put_from_keyval:Nn} \meta{prop~var}
+% \cs{prop_put_from_keyval:Nn} \meta{property list}
% \{
% \meta{key1} |=| \meta{value1} |,|
% \meta{key2} |=| \meta{value2} |,| \ldots{}
% \}
% \end{syntax}
-% Updates the \meta{prop~var} by adding entries for each key--value
+% Updates the \meta{property list} by adding entries for each key--value
% pair given in the second argument. The addition is done through
-% \cs{prop_put:Nnn}, hence if the \meta{prop~var} already contains
+% \cs{prop_put:Nnn}, hence if the \meta{property list} already contains
% some of the keys, the corresponding values are discarded and
% replaced by those given in the key--value list. If duplicate keys
% appear in the key--value list then only the last of the values is kept.
%
% The function is equivalent to storing the key--value pairs in a
-% temporary property variable using \cs{prop_set_from_keyval:Nn}, then
-% combining \meta{prop~var} with the temporary variable using
+% temporary property list using \cs{prop_set_from_keyval:Nn}, then
+% combining \meta{property list} with the temporary variable using
% \cs{prop_concat:NNN}. In particular, the \meta{keys} and
% \meta{values} are space-trimmed and unbraced as described in
% \cs{prop_set_from_keyval:Nn}.