Skip to content

Commit 12e82a1

Browse files
author
Jon Haitz Legarreta
committed
DOC: Fix some minor ortography mistakes.
Fix some minor ortography mistakes: - Add a white space after a punctuation sign. - Remove a spare white space after forward slash between two words (was a matter of LaTeX adding a white space for broken lines).
1 parent 738e1ae commit 12e82a1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

SoftwareGuide/Latex/04-Contributors.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ \chapter*{Contributors}
7676
{\bf Luis Ib\'{a}\~{n}ez} and {\bf S\'{e}bastien Barr\'{e}} designed the
7777
original Book 1 cover. {\bf Matthew McCormick} and {\bf Brad King} updated the
7878
code to produce the Book 1 cover for ITK 4 and VTK 6. {\bf Xiaoxiao Liu},
79-
{\bf Bill Lorensen}, {\bf Luis Ib\'{a}\~{n}ez},and {\bf Matthew McCormick}
79+
{\bf Bill Lorensen}, {\bf Luis Ib\'{a}\~{n}ez}, and {\bf Matthew McCormick}
8080
created the 3D printed anatomical objects that were photographed by {\bf
8181
S\'{e}bastien Barr\'{e}} for the Book 2 cover. {\bf Steve Jordan} designed the
8282
layout of the covers.

SoftwareGuide/Latex/Appendices/CodingStyleGuide.tex

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2021,8 +2021,8 @@ \subsection{White Spaces}
20212021
\item An opening angle bracket (\code{<}) and the \code{template} keyword.
20222022
\item An opening round bracket (\code{(}) and its preceding word (e.g. in method
20232023
declarations and definitions).
2024-
\item An opening/closing brace (\code{\{}/\code{\}}) and its subsequent/
2025-
preceding word (e.g. when initializing an array).
2024+
\item An opening/closing brace (\code{\{}/\code{\}}) and its
2025+
subsequent/preceding word (e.g. when initializing an array).
20262026
\item An opening or closing square bracket (\code{[}, \code{]} ) and its
20272027
contents (e.g. when specifying the index of an array).
20282028
\item The constant expression termination colon in a \code{switch} statement
@@ -2037,8 +2037,8 @@ \subsection{White Spaces}
20372037
variable or keyword.
20382038
\item A closing angle bracket (\code{>}) and the preceding and subsequent
20392039
words (such as in type aliases).
2040-
\item An opening/closing round bracket (\code{(}/\code{)}) and its subsequent/
2041-
preceding word (e.g. in method argument lists).
2040+
\item An opening/closing round bracket (\code{(}/\code{)}) and its
2041+
subsequent/preceding word (e.g. in method argument lists).
20422042
\item Individual members in a list separated by commas (e.g.
20432043
\code{SizeType size = {{20, 20, 20}}}, or \code{data[i, j]}). The comma must be
20442044
always placed next to a given element, and be followed by the single white space.
@@ -2542,9 +2542,9 @@ \subsection{Empty Lines}
25422542
\begin{itemize}
25432543
\item The accessor type (\code{public}, \code{protected}, \code{private}) and
25442544
the declaration that immediately follows it.
2545-
\item An opening/closing brace (\code{\{}/\code{\}}) and its subsequent/
2546-
preceding line (e.g. nested namespace braces, method definition and its body,
2547-
control statements, etc).
2545+
\item An opening/closing brace (\code{\{}/\code{\}}) and its
2546+
subsequent/preceding line (e.g. nested namespace braces, method definition and
2547+
its body, control statements, etc).
25482548
\end{itemize}
25492549
25502550
However, an empty line should exist in a header file (\code{.h})

0 commit comments

Comments
 (0)