Skip to content

Commit cc5a3d7

Browse files
committed
on purpose: typo
1 parent d83cd29 commit cc5a3d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ jobs:
186186
cfg_files=($(shopt -s nullglob ; echo {.vscode,.}/{,.}c[sS]pell{.json,.config{.js,.cjs,.json,.yaml,.yml},.yaml,.yml} ;))
187187
cfg_file=${cfg_files[0]}
188188
unset CSPELL_CFG_OPTION ; if [ -n "$cfg_file" ]; then CSPELL_CFG_OPTION="--config $cfg_file" ; fi
189-
S=$(cspell ${CSPELL_CFG_OPTION} --no-summary --no-progress .) && printf "%s\n" "$S" || { printf "%s\n" "$S" ; printf "%s" "$S" | sed -E -n "s/${PWD//\//\\/}\/(.*):(.*):(.*) - (.*)/::${fault_type} file=\1,line=\2,col=\3::${fault_type^^}: \4 (file:'\1', line:\2)/p" ; fault=true ; true ; }
189+
S=$(cspell ${CSPELL_CFG_OPTION} --no-summary --no-progress .) && printf "%s\n" "$S" || { printf "%s\n" "$S" ; printf "%s" "$S" | sed -E -n "s/^(.*):([0-9]+):([0-9]+) - Unknown word \(([^)]+)\).*$/::${fault_type} file=\1,line=\2,col=\3::${fault_type^^}: \`cspell\`: Unknown word '\4' (file:'\1', line:\2)/p" ; fault=true ; true ; }
190190
if [ -n "${{ steps.vars.outputs.FAIL_ON_FAULT }}" ] && [ -n "$fault" ]; then exit 1 ; fi
191191
192192
toml_format:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
uutils coreutils is a cross-platform reimplementation of the GNU coreutils in
2727
[Rust](http://www.rust-lang.org). While all programs have been implemented, some
28-
options might be missing or different behavior might be experienced.
28+
options might be missing or diferent behavior might be experienced.
2929

3030
<div class="oranda-hide">
3131

@@ -120,7 +120,7 @@ cargo build --release --features windows
120120
cargo build --release --features unix
121121
```
122122

123-
To build SELinux-specific features, including `chcon` and `runcon`, ensure that `libselinux`
123+
To build SELinux-specific features, including `chcon` and `runcon`, ensure that `libselinux`
124124
and `libclang` are installed on your system. Then, run the following command:
125125
```
126126
cargo build --release --features unix,feat_selinux

0 commit comments

Comments
 (0)