treewide: fix typos

This commit is contained in:
figsoda
2022-12-17 19:39:44 -05:00
parent 6bb0dbf91f
commit ec8cb34358
91 changed files with 110 additions and 110 deletions
@@ -12,7 +12,7 @@ let
namePrefix = python.libPrefix + "-";
# Derivations built with `buildPythonPackage` can already be overriden with `override`, `overrideAttrs`, and `overrideDerivation`.
# Derivations built with `buildPythonPackage` can already be overridden with `override`, `overrideAttrs`, and `overrideDerivation`.
# This function introduces `overridePythonAttrs` and it overrides the call to `buildPythonPackage`.
makeOverridablePythonPackage = f: origArgs:
let
@@ -248,7 +248,7 @@ FORMATS = {
}
def _determine_fetcher(text):
# Count occurences of fetchers.
# Count occurrences of fetchers.
nfetchers = sum(text.count('src = {}'.format(fetcher)) for fetcher in FETCHERS.keys())
if nfetchers == 0:
raise ValueError("no fetcher.")