Skip to content

Commit f08abd2

Browse files
committed
Fix use of "check out"
1 parent 5a84635 commit f08abd2

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ These build instructions apply to `c++utilities` but also to my other projects u
8181
* libstdc++ or Boost.Iostreams for `NativeFileStream` (optional, use `USE_NATIVE_FILE_BUFFER=OFF` to disable)
8282
* Boost.Process for `execApp()` test helper under Windows (optional, use `USE_BOOST_PROCESS=OFF` to disable)
8383
* libarchive (optional, for archiving utilities only, use `USE_LIBARCHIVE=ON` to enable)
84-
* My other projects have further dependencies such as Qt. Checkout the README of these
84+
* My other projects have further dependencies such as Qt. Check out the README of these
8585
projects for further details.
8686

8787
### How to build
@@ -137,7 +137,7 @@ instructions for building on Windows.
137137
* The specified icon themes need to be installed in the usual location. Otherwise, use e.g.
138138
`BUILTIN_ICON_THEMES_SEARCH_PATH=D:/programming/misc/breeze-icons/usr/share/icons` to specify the
139139
search path.
140-
* For more details, checkout the documentation about build variables (in the
140+
* For more details, check out the documentation about build variables (in the
141141
[directory `doc`](https://github.com/Martchus/cpp-utilities/blob/master/doc/buildvariables.md) and
142142
in the Doxygen version accessible under "Related Pages").
143143
* The repository [PKGBUILDs](https://github.com/Martchus/PKGBUILDs) contains build scripts for GNU/Linux,
@@ -272,7 +272,7 @@ Syncthing Tray natively on the development host thanks to the cross-platform nat
272272
I recommended building for Android under Arch Linux (or an Arch Linux container, see last paragraphs of this
273273
section) using `android-*` packages found on the AUR and my
274274
[binary repository](https://martchus.dyn.f3l.de/repo/arch/ownstuff). The commands in this section assume this
275-
kind of build environment. For building on Windows, checkout the section
275+
kind of build environment. For building on Windows, check out the section
276276
"[Building under Windows for Android](#building-under-windows-for-android)" below.
277277

278278
---
@@ -608,7 +608,7 @@ cmake --build --preset win-android # or win-android-official-qt
608608
609609
### Packaging
610610
The repositories mentioned below contain packages for `c++utilities` itself but also for my other projects.
611-
For a more comprehensive list of repositories providing my other projects such as Syncthing Tray, checkout
611+
For a more comprehensive list of repositories providing my other projects such as Syncthing Tray, check out
612612
the README of those projects instead.
613613
614614
#### Arch Linux package
@@ -626,7 +626,7 @@ There is also a [sub project](https://build.opensuse.org/project/show/home:mkitt
626626
from the Git master branch.
627627
628628
#### Gentoo
629-
Checkout [Case_Of's overlay](https://codeberg.org/Case_Of/gentoo-overlay)
629+
Check out [Case_Of's overlay](https://codeberg.org/Case_Of/gentoo-overlay)
630630
or [perfect7gentleman's overlay](https://gitlab.com/Perfect_Gentleman/PG_Overlay).
631631
632632
## Copyright notice and license

doc/buildvariables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ using the CMake functions
142142
and
143143
[`find_package`](https://cmake.org/cmake/help/latest/command/find_package.html).
144144
The behaviour of those functions can be controlled by setting some variables, eg.
145-
using a toolchain file. Checkout the CMake documentation for this.
145+
using a toolchain file. Check out the CMake documentation for this.
146146

147147
If the detection does not work as expected or a library from a non-standard
148148
location should be used one can also just pass the library path directly by specifying
@@ -337,7 +337,7 @@ Since those modules make use of the variables explained above, the modules must
337337
be included *after* setting those variables. The inclusion order of the modules
338338
matters as well.
339339

340-
For an example, checkout the project file of c++utilities itself. The project
340+
For an example, check out the project file of c++utilities itself. The project
341341
files of [Syncthing Tray](https://github.com/Martchus/syncthingtray) should
342342
cover everything (library, plugin, application, tests, desktop file, Qt
343343
resources and translations, ...).

io/path.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ inline
9191
#if !defined(CPP_UTILITIES_NO_ICONV) || !defined(PLATFORM_WINDOWS)
9292
/*!
9393
* \brief Returns \a path as UTF-8 string or string view.
94-
* \sa This is the opposite of makeNativePath() so checkout remarks of that function for details.
94+
* \sa This is the opposite of makeNativePath() so check out remarks of that function for details.
9595
*/
9696
inline
9797
#ifdef PLATFORM_WINDOWS

misc/signingkeys.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ namespace CppUtilities {
99
/*!
1010
* \brief Contains signing keys for verifying releases via OpenSSL or stsigtool.
1111
* \remarks
12-
* - Checkout the header file `verification.h` which contains the function verifySignature() for
12+
* - Check out the header file `verification.h` which contains the function verifySignature() for
1313
* verification with OpenSSL.
14-
* - Checkout the Syncthing library contained in Syncthing Tray for verification with stsigtool.
14+
* - Check out the Syncthing library contained in Syncthing Tray for verification with stsigtool.
1515
* - The arrays may contain more than one key, e.g. when rotatiung keys and an old key is in progress
1616
* of being phased out.
1717
* - The concrete type of the contained key variables will change when the number of keys changes.

tests/testutils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ std::string TestApplication::testFilePath(const std::string &relativeTestFilePat
274274
/*!
275275
* \brief Returns the full path of the test directory with the specified \a relativeTestDirPath.
276276
*
277-
* This is the same as TestApplication::testFilePath() but for directories. Checkout the documentation of
277+
* This is the same as TestApplication::testFilePath() but for directories. Check out the documentation of
278278
* TestApplication::testFilePath() for details about the lookup.
279279
*/
280280
std::string TestApplication::testDirPath(const std::string &relativeTestDirPath) const

0 commit comments

Comments
 (0)