lib: fix typos

This commit is contained in:
figsoda 2022-12-17 18:59:29 -05:00
parent 403e25e3e3
commit 695d4bc76b
8 changed files with 10 additions and 10 deletions

View file

@ -185,7 +185,7 @@ rec {
*/
makeBinPath = makeSearchPathOutput "bin" "bin";
/* Normalize path, removing extranous /s
/* Normalize path, removing extraneous /s
Type: normalizePath :: string -> string
@ -330,7 +330,7 @@ rec {
*/
escape = list: replaceStrings list (map (c: "\\${c}") list);
/* Escape occurence of the element of `list` in `string` by
/* Escape occurrence of the element of `list` in `string` by
converting to its ASCII value and prefixing it with \\x.
Only works for printable ascii characters.