Skip to content

Commit f24d6cd

Browse files
kianmengSlackadays
andauthored
Fix typos (#229) [no-ci]
* Fix typos Found via `codespell -S ./src/cb/src/locales,*.svg -L splitted,requestor,delet,caf,daa,sav` * Not a typo --------- Co-authored-by: Jackson Huff <[email protected]>
1 parent 485a668 commit f24d6cd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

โ€ŽREADME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1271,7 +1271,7 @@ $ cb --clipboard 10 copy BarBaz
12711271

12721272
Copy to a temporary clipboard that doesn't start with a number.
12731273
```sh
1274-
$ cb -c SomeCB copy "A really really long sentence, and I mean really realy super DUPER long!"
1274+
$ cb -c SomeCB copy "A really really long sentence, and I mean really really super DUPER long!"
12751275
```
12761276

12771277
Note: Although copying to a temporary clipboard that doesn't start with a number is impossible using the conventional method of adding it to the end of the action, this alternative method is completely supported and works great.

โ€Ždocumentation/website/content/_docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,7 @@ $ cb --clipboard 10 copy BarBaz
860860

861861
Copy to a temporary clipboard that doesn't start with a number.
862862
```sh
863-
$ cb -c SomeCB copy "A really really long sentence, and I mean really realy super DUPER long!"
863+
$ cb -c SomeCB copy "A really really long sentence, and I mean really really super DUPER long!"
864864
```
865865

866866
Note: Although copying to a temporary clipboard that doesn't start with a number is impossible using the conventional method of adding it to the end of the action, this alternative method is completely supported and works great.

โ€Žsrc/cb/src/utils/formatting.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,4 +221,4 @@ void setupTerminal() {
221221
#elif defined(_WIN64) || defined(_WIN32)
222222
GetConsoleMode(GetStdHandle(STD_INPUT_HANDLE), &dwNormalMode);
223223
#endif
224-
}
224+
}

โ€Žsrc/cb/src/utils/utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ void setupHandlers() {
250250
auto exitCleanly = [](int) {
251251
fprintf(stderr, "%s", formatColors("[blank]").data());
252252
if (!stopIndicator(false)) {
253-
// Indicator thread is not currently running. TODO: Write an unbuffered newline, and maybe a cancelation
253+
// Indicator thread is not currently running. TODO: Write an unbuffered newline, and maybe a cancellation
254254
// message, directly to standard error. Note: There is no standard C++ interface for this, so this requires
255255
// an OS call.
256256
path.releaseLock();

0 commit comments

Comments
ย (0)