diff options
author | Austin Henriksen <austin@zeroc.com> | 2023-12-06 11:35:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 11:35:59 -0500 |
commit | e14afea88e4b3b65d29a64faa0f088cb986a9258 (patch) | |
tree | a3f6e11fab21a5105f40682d8fedeff25500a1a2 /scripts/Util.py | |
parent | Fixed typo in _makeLambdaOutgoing name (diff) | |
download | ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.bz2 ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.xz ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.zip |
Fixed typos. (#1580)
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 9886ab28ad0..0af3ee081d8 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -92,7 +92,7 @@ class Component(object): or the mapping directory if using a source distribution. """ def getInstallDir(self, mapping, current): - raise Error("must be overriden") + raise Error("must be overridden") def getSourceDir(self): return toplevel @@ -108,7 +108,7 @@ class Component(object): return os.path.join(self.getSourceDir(), "scripts", "tests") def getPhpExtension(self, mapping, current): - raise RuntimeError("must be overriden if component provides php mapping") + raise RuntimeError("must be overridden if component provides php mapping") def getNugetPackage(self, mapping): return "zeroc.{0}.{1}".format(self.__class__.__name__.lower(), @@ -131,7 +131,7 @@ class Component(object): return self.nugetVersion[mapping] def getNugetPackageVersionFile(self, mapping): - raise RuntimeError("must be overriden if component provides C++ or C# nuget packages") + raise RuntimeError("must be overridden if component provides C++ or C# nuget packages") def getFilters(self, mapping, config): return ([], []) @@ -290,7 +290,7 @@ class Platform(object): return os.path.join(installDir, "lib") def getBuildSubDir(self, mapping, name, current): - # Return the build sub-directory, to be overriden by specializations + # Return the build sub-directory, to be overridden by specializations buildPlatform = current.driver.configs[mapping].buildPlatform buildConfig = current.driver.configs[mapping].buildConfig return os.path.join("build", buildPlatform, buildConfig) @@ -1547,7 +1547,7 @@ class TestCase(Runnable): return self.options(current) if callable(self.options) else self.options def canRun(self, current): - # Can be overriden + # Can be overridden return True def setupServerSide(self, current): |