Closed cjwetherington closed 2 years ago
Fixes grammatical issue by replacing "who" with "that" in the following sentence: "Orphan packages are packages who are not present in the repositories."
"Who" refers exclusively to a person or persons (see https://en.wiktionary.org/wiki/who#English); "that" is the appropriate pronoun.
Changes via: grep -r 'packages who' . | cut -d: -f1 | xargs -I {} sed -i 's/packages who/packages that/' {}
grep -r 'packages who' . | cut -d: -f1 | xargs -I {} sed -i 's/packages who/packages that/' {}
Fixes grammatical issue by replacing "who" with "that" in the following sentence: "Orphan packages are packages who are not present in the repositories."
"Who" refers exclusively to a person or persons (see https://en.wiktionary.org/wiki/who#English); "that" is the appropriate pronoun.
Changes via:
grep -r 'packages who' . | cut -d: -f1 | xargs -I {} sed -i 's/packages who/packages that/' {}