commit: 3286a659856e9a63391f2a74e5581b40c9332e84
parent 81d9716ebb60e35bdb8eddebc3030df183c7f1a9
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Thu, 31 Oct 2024 11:55:06 +0100
Fix spelling via codespell
Diffstat:
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -10,7 +10,7 @@ Tested on Linux(musl), FreeBSD, NetBSD, OpenBSD: <https://builds.sr.ht/~lanodan/
- Provide simple generic tools which can be composed with existing others
- Code readability and hackability
- Portability
-- Efficiency, but not without sacrifying the other goals
+- Efficiency, but not without sacrificing the other goals
## Non-Goals
- Implement commonly available tools, this is [utils-std](https://hacktivis.me/git/utils-std)'s purpose
diff --git a/cmd/lolcat.1 b/cmd/lolcat.1
@@ -21,7 +21,7 @@ in bold, this allows to strip escape codes easily.
.Sh KNOWN ISSUES & LIMITATIONS
.Bl -bullet
.It
-Frequence is not adjustable yet
+Frequency is not adjustable yet
.It
.Nm
puts escape codes even when stdout isn't a tty, this is expected, do not call
diff --git a/cmd/pat.c b/cmd/pat.c
@@ -17,7 +17,7 @@ concat(int fd, const char *fdname)
ssize_t c;
char buf[BUFSIZ];
- // File Number as an esccape/containment solution
+ // File Number as an escape/containment solution
printf("\n### File %d << %s >> ###\n", files++, fdname);
while((c = read(fd, buf, sizeof(buf))) > 0)
diff --git a/configure b/configure
@@ -74,7 +74,7 @@ check_cmd() {
set -- $full_cmd
cmd="$1"
- printf 'Checking $%s = %s command existance ...' "$var" "$full_cmd"
+ printf 'Checking $%s = %s command existence ...' "$var" "$full_cmd"
command -v "$cmd" >/dev/null ; is_ok
}