Skip to content

Commit 3ab3853

Browse files
amadiobernhardmgruber
authored andcommitted
Capitalize items consistently
1 parent f79c0ac commit 3ab3853

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

talk/tools/editors.tex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,23 @@
44
\frametitle{\cpp editors and IDEs}
55
\begin{block}{Can dramatically improve your efficiency by}
66
\begin{itemize}
7-
\item coloring the code for you to ``see'' the structure
8-
\item helping with indenting and formatting properly
9-
\item allowing you to easily navigate in the source tree
10-
\item helping with compilation/debugging, profiling, static analysis
11-
\item showing you errors and suggestions while typing
7+
\item Coloring the code for you to ``see'' the structure
8+
\item Helping with indenting and formatting properly
9+
\item Allowing you to easily navigate in the source tree
10+
\item Helping with compilation/debugging, profiling, static analysis
11+
\item Showing you errors and suggestions while typing
1212
\end{itemize}
1313
\end{block}
1414
\begin{block}{}
1515
\begin{description}
1616
\item[\href{http://www.microsoft.com/}{\beamergotobutton{Visual Studio}}]
17-
heavy, fully fledged IDE for Windows
17+
Heavy, fully fledged IDE for Windows
1818
\item[\href{https://code.visualstudio.com/}{\beamergotobutton{Visual Studio Code}}]
19-
editor, open source, portable, many plugins
19+
Editor, open source, portable, many plugins
2020
\item[\href{https://www.eclipse.org/}{\beamergotobutton{Eclipse}}]
2121
IDE, open source, portable
2222
\item[\href{http://www.gnu.org/software/emacs/}{\beamergotobutton{Emacs}} \href{https://www.vim.org/}{\beamergotobutton{Vim}}]
23-
editors for experts, extremely powerful. \\
23+
Editors for experts, extremely powerful. \\
2424
They are to IDEs what latex is to PowerPoint
2525
\item[CLion, Code::Blocks, Atom, NetBeans, Sublime Text, ...]
2626
\end{description}

talk/tools/formatting.tex

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
\frametitle{clang-format}
55
\begin{block}{.clang-format}
66
\begin{itemize}
7-
\item file describing your formatting preferences
8-
\item should be checked-in at the repository root (project wide)
7+
\item File describing your formatting preferences
8+
\item Should be checked-in at the repository root (project wide)
99
\item \mintinline{bash}{clang-format -style=LLVM -dump-config >} \\
1010
\mintinline{bash}{.clang-format}
11-
\item adapt style options with help from: \url{https://clang.llvm.org/docs/ClangFormatStyleOptions.html}
11+
\item Adapt style options with help from: \url{https://clang.llvm.org/docs/ClangFormatStyleOptions.html}
1212
\end{itemize}
1313
\end{block}
1414
\begin{block}{Run clang-format}
@@ -26,15 +26,15 @@
2626
\frametitle{clang-format}
2727
\begin{exercise}{clang-format}
2828
\begin{itemize}
29-
\item go to any example
30-
\item format code with: \mintinline{bash}{clang-format --style=GNU -i <file.cpp>}
31-
\item inspect changes, try \mintinline{bash}{git diff .}
32-
\item revert changes using \mintinline{bash}{git checkout -- <file.cpp>} or \mintinline{bash}{git checkout .}
33-
\item go to code directory and create a .clang-format file \\
29+
\item Go to any example
30+
\item Format code with: \mintinline{bash}{clang-format --style=GNU -i <file.cpp>}
31+
\item Inspect changes, try \mintinline{bash}{git diff .}
32+
\item Revert changes using \mintinline{bash}{git checkout -- <file.cpp>} or \mintinline{bash}{git checkout .}
33+
\item Go to code directory and create a .clang-format file \\
3434
\mintinline{bash}{clang-format -style=LLVM -dump-config >} \\
3535
\mintinline{bash}{.clang-format}
36-
\item run \mintinline{bash}{clang-format -i <any_exercise>/*.cpp}
37-
\item revert changes using \mintinline{bash}{git checkout <any_exercise>}
36+
\item Run \mintinline{bash}{clang-format -i <any_exercise>/*.cpp}
37+
\item Revert changes using \mintinline{bash}{git checkout <any_exercise>}
3838
\end{itemize}
3939
\end{exercise}
4040
\end{frame}

talk/tools/vcs.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
\frametitle{Code management tool}
55
\begin{alertblock}{Please use one!}
66
\begin{itemize}
7-
\item even locally
8-
\item even on a single file
9-
\item even if you are the only committer
7+
\item Even locally
8+
\item Even on a single file
9+
\item Even if you are the only committer
1010
\end{itemize}
1111
It will soon save your day
1212
\end{alertblock}
@@ -15,7 +15,7 @@
1515
\item[\href{http://git-scm.com/}{\beamergotobutton{git}}]
1616
THE mainstream choice. Fast, light, easy to use
1717
\item[\href{http://mercurial.selenic.com/}{\beamergotobutton{mercurial}}]
18-
the alternative to git
18+
The alternative to git
1919
\item[\href{http://bazaar.canonical.com/en/}{\beamergotobutton{Bazaar}}]
2020
another alternative
2121
\item[svn]
@@ -27,7 +27,7 @@
2727
\end{frame}
2828

2929
\begin{frame}[fragile]
30-
\frametitle{GIT crash course}
30+
\frametitle{Git crash course}
3131
\begin{minted}[gobble=4]{bash}
3232
# git init myProject
3333
Initialized empty Git repository in myProject/.git/

0 commit comments

Comments
 (0)