summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/expl3/expl3.dtx
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-11-22 00:01:52 +0000
committerKarl Berry <karl@freefriends.org>2009-11-22 00:01:52 +0000
commitc8f25e8c064910cbdae63d68ad0b753dcd925264 (patch)
tree50cd44cf48c386388aadae1d16b1adae5f917034 /Master/texmf-dist/source/latex/expl3/expl3.dtx
parent3a4d88244a662af906112c56eb1982f9dacef5b2 (diff)
expl3 1733 (21nov09)
git-svn-id: svn://tug.org/texlive/trunk@16114 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/latex/expl3/expl3.dtx')
-rw-r--r--Master/texmf-dist/source/latex/expl3/expl3.dtx17
1 files changed, 8 insertions, 9 deletions
diff --git a/Master/texmf-dist/source/latex/expl3/expl3.dtx b/Master/texmf-dist/source/latex/expl3/expl3.dtx
index ec89c31aea3..2ffb707a1bc 100644
--- a/Master/texmf-dist/source/latex/expl3/expl3.dtx
+++ b/Master/texmf-dist/source/latex/expl3/expl3.dtx
@@ -37,7 +37,7 @@
\RequirePackage{l3names}
%</driver|package>
%\fi
-\GetIdInfo$Id: expl3.dtx 1458 2009-08-12 03:35:07Z will $
+\GetIdInfo$Id: expl3.dtx 1677 2009-11-02 08:24:04Z joseph $
{L3 Experimental code bundle wrapper}%
%\iffalse
%<*driver>
@@ -740,24 +740,23 @@
% availble in the \pkg{xparse} package, which is available from CTAN
% or the \LaTeX3 SVN repository.
% \item At an internal level, most functions should be generated
-% \cs{long} (using \cs{cs_new:Nn}) rather than `short' (using
-% \cs{cs_new_nopar:Nn}). The exceptions are:
+% \cs{long} (using \cs{cs_new:Npn}) rather than `short' (using
+% \cs{cs_new_nopar:Npn}). The exceptions are:
% \begin{itemize}
% \item Functions which take no arguments;
% \item Functions which are used with pre-set arguments which
% therefore cannot be \cs{long}: this is mainly the case with
-% auxilliary functions.
+% auxiliary functions.
% \end{itemize}
% \item Where possible, declare all variables and functions (using
-% \cs{cs_new:NN}, \cs{tl_new:N}, etc.) before use.
+% \cs{cs_new:Npn}, \cs{tl_new:N}, etc.) before use.
% \item Prefer `higher-level' functions over `lower-level', where
-% possible. So for example use \cs{cs_new:Nn} in preference to
-% \cs{cs_new:Npn}, and \cs{cs_if_exist:N(TF)} over
+% possible. So for example use \cs{cs_if_exist:N(TF)} over
% \cs{if_cs_exist:N}.
-% \item Use space to make code readable. In general, we recommand
+% \item Use space to make code readable. In general, we recommend
% a layout such as:
% \begin{verbatim}
-% \cs_new:Nn \foo_bar:Nn {
+% \cs_new:Npn \foo_bar:Nn #1#2 {
% \cs_if_exist:NTF #1 {
% \foo_bar_aux_i:n {#2}
% }{