[llvm] f9e64ae - [lit][NFC] Fix a couple of typos
Fraser Cormack via llvm-commits
llvm-commits at lists.llvm.org
Thu May 25 23:37:06 PDT 2023
Author: Fraser Cormack
Date: 2023-05-26T07:33:27+01:00
New Revision: f9e64ae76f3275aa68a034298e11f3882ae36611
URL: https://github.com/llvm/llvm-project/commit/f9e64ae76f3275aa68a034298e11f3882ae36611
DIFF: https://github.com/llvm/llvm-project/commit/f9e64ae76f3275aa68a034298e11f3882ae36611.diff
LOG: [lit][NFC] Fix a couple of typos
Added:
Modified:
llvm/utils/lit/lit/llvm/subst.py
Removed:
################################################################################
diff --git a/llvm/utils/lit/lit/llvm/subst.py b/llvm/utils/lit/lit/llvm/subst.py
index e00fdaa516502..277566fb81e66 100644
--- a/llvm/utils/lit/lit/llvm/subst.py
+++ b/llvm/utils/lit/lit/llvm/subst.py
@@ -12,7 +12,7 @@ def __init__(self, name):
self.name = name
def resolve(self, config, dirs):
- # Check for a user explicitely overriding a tool. This allows:
+ # Check for a user explicitly overriding a tool. This allows:
# llvm-lit -D llc="llc -enable-misched -verify-machineinstrs"
command = config.lit_config.params.get(self.name)
if command is None:
@@ -51,7 +51,7 @@ def __init__(
command: The command to substitute when the key is matched. By default,
this will treat `key` as a tool name and search for it. If it is
- a string, it is intereprted as an exact path. If it is an instance of
+ a string, it is interpreted as an exact path. If it is an instance of
FindTool, the specified tool name is searched for on disk.
pre: If specified, the substitution will not find matches where
More information about the llvm-commits
mailing list