Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Freed-Wu committed Feb 13, 2022
1 parent cbf0ebb commit b79c4c5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doc/generic/pgf/pgfmanual-en-base-arrows.tex
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ \subsection{Caching and Rendering of Arrows}

There are, however, two cases in which the drawing code gets executed
each time the arrow is used: First, an arrow tip kind can specify that
this should always happen by saying |cachable=false| in its definition.
this should always happen by saying |cache=false| in its definition.
This is necessary if the drawing code contains low-level drawing
commands that cannot be intercepted such as a use of |\pgftext| for
arrow tips that ``contain text''. Second, when the |bend| option is
Expand Down Expand Up @@ -465,7 +465,7 @@ \subsection{Declaring an Arrow Tip Kind}
low-level commands created by the drawing code (using the system
layer protocol subsystem, see Section~\ref{section-protocols}) will
be cached and reused later on. However, when the drawing code
contains ``uncachable'' code like a call to |\pgftext|, caching
contains ``uncacheable'' code like a call to |\pgftext|, caching
must be switched off by saying |cache=false|.
\item \declare{|bending mode|}|=|\meta{mode}

Expand Down
2 changes: 1 addition & 1 deletion doc/generic/pgf/pgfmanual-en-gd-usage-pgf.tex
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ \subsection{How Graph Drawing in PGF Works}
\draw[p] (tikz-node.east) -- (1.5,2) -- (1.5,1) -- (tex-add-edge.west);
\draw[p] (tex-add-edge.east) -- (interface-add-edge.west);

% scope ends -- cloes graph, layouts it and draws it
% scope ends -- close graph, layouts it and draws it
\node (tikz-end) at (0,0) [object node] {|};|};
\node (tex-end) at (6,0) [object node] {|\pgfgdendscope|};
\node (interface-draw-graph) at (13,0) [object node] {|runGraphDrawingAlgorithm()|};
Expand Down
2 changes: 1 addition & 1 deletion doc/generic/pgf/pgfmanual-en-introduction.tex
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ \section{Introduction}
(PostScript-based) \LaTeX. In other words, I wanted to implement a ``portable
graphics format'' for \TeX\ -- hence the name \pgfname. These early macros are
still around and they form the ``basic layer'' of the system described in this
manual, but most of the interaction an author has theses days is with
manual, but most of the interaction an author has these days is with
\tikzname\ -- which has become a whole language of its own.


Expand Down
2 changes: 1 addition & 1 deletion doc/generic/pgf/pgfmanual-en-library-external.tex
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ \subsubsection{Support for Labels and References In External Files}
begin\{document\}} in \LaTeX.}.
\end{enumerate}

This does also work if a |\label|/|\ref| combination is implemented itsself
This does also work if a |\label|/|\ref| combination is implemented itself
by a |tikzpicture| (a feature offered by |pgfplots|).
\end{key}

Expand Down
4 changes: 2 additions & 2 deletions doc/generic/pgf/pgfmanual-en-library-shapes.tex
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ \subsection{Geometric Shapes}
\begin{key}{/pgf/cylinder uses custom fill=\meta{boolean} (default true)}
This enables the use of a custom fill for the body and the end of the
cylinder. The background path for the shape should not be filled (e.g.,
in \tikzname{}, the |fill| option for the node must be implicity or
in \tikzname{}, the |fill| option for the node must be implicitly or
explicitly set to |none|). Internally, this key sets the \TeX-if
|\ifpgfcylinderusescustomfill| appropriately.
\end{key}
Expand Down Expand Up @@ -1773,7 +1773,7 @@ \subsection{Shapes with Multiple Text Parts}
This enables the use of a custom fill for each of the node parts
(including the area covered by the |inner sep|). The background path
for the shape should not be filled (e.g., in \tikzname{}, the |fill|
option for the node must be implicity or explicitly set to |none|).
option for the node must be implicitly or explicitly set to |none|).
Internally, this key sets the \TeX-if
|\ifpgfrectanglesplitusecustomfill| appropriately.
\end{key}
Expand Down
4 changes: 2 additions & 2 deletions doc/generic/pgf/pgfmanual-en-pgfkeys.tex
Original file line number Diff line number Diff line change
Expand Up @@ -956,14 +956,14 @@ \subsubsection{Setting Defaults}
\end{handler}

\begin{handler}{{.value required}}
This handler causes the error message key |/erros/value required| to be
This handler causes the error message key |/errors/value required| to be
issued whenever the \meta{key} is used without a value.

\example |\pgfkeys{/width/.value required}|
\end{handler}

\begin{handler}{{.value forbidden}}
This handler causes the error message key |/erros/value forbidden| to be
This handler causes the error message key |/errors/value forbidden| to be
issued whenever the \meta{key} is used with a value.

This handler works be adding code to the code of the key. This means that
Expand Down

0 comments on commit b79c4c5

Please sign in to comment.