Fix typos reported by lintian (#1147)

From https://mentors.debian.net/package/rgbds/#upload-1
This commit is contained in:
Robbi-Blechdose
2023-06-24 16:26:04 +02:00
committed by GitHub
parent 6d806238fb
commit a2e0ac2872
2 changed files with 2 additions and 2 deletions

View File

@@ -188,7 +188,7 @@ PRINTLN "Hello {s:WHO}!"
.Pp .Pp
Although, for these examples, Although, for these examples,
.Ic STRFMT .Ic STRFMT
would be more approriate; see would be more appropriate; see
.Sx String expressions .Sx String expressions
further below. further below.
.Sh EXPRESSIONS .Sh EXPRESSIONS

View File

@@ -386,7 +386,7 @@ int main(int argc, char **argv) {
char *args[] = {path, argv[1], file, nullptr}; char *args[] = {path, argv[1], file, nullptr};
if (auto ret = execProg("randtilegen", args); ret != nullptr) { if (auto ret = execProg("randtilegen", args); ret != nullptr) {
fatal("Failed to excute ./randtilegen (%s). Is it in the current working directory?", fatal("Failed to execute ./randtilegen (%s). Is it in the current working directory?",
ret); ret);
} }
} }