summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-12-07 22:06:05 +0000
committerKarl Berry <karl@freefriends.org>2020-12-07 22:06:05 +0000
commit64e75915646d2f3522cc81a7142eac31ab5372d4 (patch)
tree3ff7ed7598a38929482700509f6f686fb5556e4c /Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
parent11717414a40ca6ce25ae1a4c4c097c580a33a48a (diff)
l3kernel (7dec20)
git-svn-id: svn://tug.org/texlive/trunk@57088 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/l3kernel/l3tl.dtx')
-rw-r--r--Master/texmf-dist/source/latex/l3kernel/l3tl.dtx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx b/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
index 678a3b0dcb6..d335824821d 100644
--- a/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
+++ b/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
@@ -43,7 +43,7 @@
% }^^A
% }
%
-% \date{Released 2020-12-05}
+% \date{Released 2020-12-07}
%
% \maketitle
%
@@ -573,16 +573,16 @@
% {\tl_map_tokens:Nn, \tl_map_tokens:cn, \tl_map_tokens:nn}
% \begin{syntax}
% \cs{tl_map_tokens:Nn} \meta{tl~var} \Arg{code}
-% \cs{tl_map_tokens:nn} \meta{tokens} \Arg{code}
+% \cs{tl_map_tokens:nn} \Arg{tokens} \Arg{code}
% \end{syntax}
% Analogue of \cs{tl_map_function:NN} which maps several tokens
% instead of a single function. The \meta{code} receives each item in
-% the \meta{tl~var} or \meta{tokens} as two trailing brace groups. For
+% the \meta{tl~var} or in \meta{tokens} as a trailing brace group. For
% instance,
% \begin{verbatim}
% \tl_map_tokens:Nn \l_my_tl { \prg_replicate:nn { 2 } }
% \end{verbatim}
-% expands to twice each item in the \meta{sequence}: for each item in
+% expands to twice each item in the \meta{tl~var}: for each item in
% |\l_my_tl| the function \cs{prg_replicate:nn} receives |2| and
% \meta{item} as its two arguments. The function
% \cs{tl_map_inline:Nn} is typically faster but is not expandable.