summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/l3kernel/l3tl.dtx')
-rw-r--r--Master/texmf-dist/source/latex/l3kernel/l3tl.dtx14
1 files changed, 7 insertions, 7 deletions
diff --git a/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx b/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
index b85b98a9222..1d44094605b 100644
--- a/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
+++ b/Master/texmf-dist/source/latex/l3kernel/l3tl.dtx
@@ -1,6 +1,6 @@
% \iffalse meta-comment
%
-%% File: l3tl.dtx Copyright (C) 1990-2018 The LaTeX3 Project
+%% File: l3tl.dtx Copyright (C) 1990-2019 The LaTeX3 Project
%
% It may be distributed and/or modified under the conditions of the
% LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -41,7 +41,7 @@
% }^^A
% }
%
-% \date{Released 2018-12-12}
+% \date{Released 2019-01-01}
%
% \maketitle
%
@@ -1034,7 +1034,7 @@
% \end{syntax}
% Leaves in the input stream the items from the \meta{start index} to the
% \meta{end index} inclusive. Spaces and braces are preserved between
-% the items returned (but never at either end of the list).
+% the items returned (but never at either end of the list).
%
% Here \meta{start index} and \meta{end index} should be integer denotations.
% For describing in detail the functions' behavior, let $m$ and $n$ be the start
@@ -1052,7 +1052,7 @@
% Spaces in between items in the actual range are preserved. Spaces at either end
% of the token list will be removed anyway (think to the token list being passed to
% |\tl_trim_spaces:n| to begin with.
-%
+%
% Thus, with $l=7$ as in the examples below, all of the following are equivalent
% and result in the whole token list
% \begin{verbatim}
@@ -1081,14 +1081,14 @@
% \tl_range:nnn { abcd~{e{}}f } { 2 } { 4 }
% \end{verbatim}
% will discard the space after `d`.
-%
+%
% If we want to get the items from the third to the last, the call
% is |\tl_range:nnn { <tl> } { 3 } { -1 }|. Similarly, for discarding
% the last item, we can do |\tl_range:nnn { <tl> } { 1 } { -2 }|.
-%
+%
% The behavior of \cs{tl_range:Nnn} is exactly the same, acting on the
% contents of the tl variable.
-%
+%
% For improved performance, see \cs{tl_range_braced:nnn} and
% \cs{tl_range_unbraced:nnn}.
% \begin{texnote}