diff options
Diffstat (limited to 'Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx')
-rw-r--r-- | Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx b/Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx index cd67aa2b2c1..a9e926bcaeb 100644 --- a/Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx +++ b/Master/texmf-dist/source/latex/l3kernel/l3fp-parse.dtx @@ -36,7 +36,7 @@ % %<*driver> \RequirePackage{l3bootstrap} -\GetIdInfo$Id: l3fp-parse.dtx 4339 2012-11-24 19:16:43Z joseph $ +\GetIdInfo$Id: l3fp-parse.dtx 4482 2013-04-24 21:05:12Z joseph $ {L3 Floating-point expression parsing} \documentclass[full]{l3doc} \begin{document} @@ -341,9 +341,9 @@ % and in red. Tokens that have not yet been read (and could % still be hidden in macros) are in gray. % -% In a first reading, the disinction between the \meta{precedence} +% In a first reading, the distinction between the \meta{precedence} % \fpPrecedence{+}, the operation \fpOperation{+}, and the character -% token |+| should not matter. It is only required to accomodate for +% token |+| should not matter. It is only required to accommodate for % multi-token infix operators such as |**|: indeed, when controlling % expansion, we need to skip over those tokens using \cs{exp_after:wN}, % and this only skips one token. Thus |**| needs to be replaced by a @@ -412,7 +412,7 @@ % taken care of by the same mechanism, and functions (\texttt{sin}, % \texttt{exp}, etc.) as well. Finding the argument of the unary % |-|, for instance, is very similar to grabbing the second operand -% of a binary infix operator, with a small subtelty on precedence +% of a binary infix operator, with a small subtlety on precedence % explained below. Once that argument is found, its sign can be % flipped. A left parenthesis is just a prefix operator which % removes the closing parenthesis (with some extra checks). @@ -866,9 +866,9 @@ % first token after \texttt{f}-expansion: % \begin{itemize} % \item \cs{tex_relax:D} in some form. That can be an internal -% floating point, a premature end, or an unitialized register. +% floating point, a premature end, or an uninitialized register. % \item A register. We interpret this as the significand of a floating -% point number. This is subtely different from unpacking it, for +% point number. This is subtly different from unpacking it, for % instance, \texttt{\cs{c_minus_one}**2} gives $1$, while % \texttt{-1**2} gives $-1$. % \item A digit, or a dot. That marks the start of the significand for @@ -1537,7 +1537,7 @@ % \begin{macro}[aux, rEXP]{\@@_parse_exponent:Nw} % This auxiliary is convenient to smuggle some material through % \cs{fi:} ending conditional processing. We place those \cs{fi:} -% (argument |#2|) at a very odd place becase this allows us to insert +% (argument |#2|) at a very odd place because this allows us to insert % \cs{__int_eval:w} \ldots{} there if needed. % \begin{macrocode} \cs_new:Npn \@@_parse_exponent:Nw #1 #2 \@@_parse_expand:w |