1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 15:11:12 +02:00

Fix typos (user facing and non-user facing) (#733)

Found via `codespell`
This commit is contained in:
luzpaz
2021-01-28 07:36:41 -05:00
committed by GitHub
parent e050b0ecbb
commit 98d3e91452
11 changed files with 19 additions and 19 deletions

View File

@@ -8,7 +8,7 @@
(defun char-remove (ch str)
;;; Remove all occurances of character from string.
;;; Remove all occurrences of character from string.
(do ((out "")
(i 0 (1+ i)))
((= i (length str)) out)