Skip to content

Commit

Permalink
typo fix so that second loop "should" end at 1 (but still doesn't, no…
Browse files Browse the repository at this point in the history
…w due to rounding)
  • Loading branch information
3geek14 committed Sep 20, 2021
1 parent 520e14c commit ca999ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/generic/pgf/text-en/pgfmanual-en-tutorial.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ \subsection{Repeating Things: For-Loops}
\begin{codeexample}[]
\tikz \foreach \x in {-1,-0.5,...,1}
\draw (\x cm,-1pt) -- (\x cm,1pt);
\tikz \foreach \x in {-1,-0.2,...,1}
\tikz \foreach \x in {-1,-0.8,...,1}
\draw (\x cm,-7pt) -- (\x cm,-5pt);
\end{codeexample}

Expand Down

0 comments on commit ca999ac

Please sign in to comment.