From f9e64ae76f3275aa68a034298e11f3882ae36611 Mon Sep 17 00:00:00 2001 From: Fraser Cormack Date: Fri, 26 May 2023 06:59:24 +0100 Subject: [PATCH] [lit][NFC] Fix a couple of typos --- llvm/utils/lit/lit/llvm/subst.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/utils/lit/lit/llvm/subst.py b/llvm/utils/lit/lit/llvm/subst.py index e00fdaa..277566f 100644 --- a/llvm/utils/lit/lit/llvm/subst.py +++ b/llvm/utils/lit/lit/llvm/subst.py @@ -12,7 +12,7 @@ class FindTool(object): 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 @@ class ToolSubst(object): 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 -- 2.7.4