summaryrefslogtreecommitdiffstats
path: root/src/eval_env.h
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2021-11-12 08:39:02 (GMT)
committerGitHub <noreply@github.com>2021-11-12 08:39:02 (GMT)
commit102ef25fdf27504f3ac7392ce8dbfe83485fb25a (patch)
tree8a105276486cb2c9e8e9ce65aa1b5e824e524c4b /src/eval_env.h
parent2dab655765499e9b05b8f097ab446ddee8f9adca (diff)
downloadNinja-102ef25fdf27504f3ac7392ce8dbfe83485fb25a.zip
Ninja-102ef25fdf27504f3ac7392ce8dbfe83485fb25a.tar.gz
Ninja-102ef25fdf27504f3ac7392ce8dbfe83485fb25a.tar.bz2
Fix typos discovered by codespell (#2047)
% [`codespell --count --ignore-words-list=fo .`](https://pypi.org/project/codespell/) ``` ./ninja/src/missing_deps.cc:119: dependecy ==> dependency ./ninja/src/includes_normalize-win32.cc:51: funcation ==> function ./ninja/src/eval_env.h:58: invokable ==> invocable ./ninja/src/missing_deps_test.cc:155: beacuse ==> because ./ninja/src/deps_log_test.cc:393: unparseable ==> unparsable ```
Diffstat (limited to 'src/eval_env.h')
-rw-r--r--src/eval_env.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval_env.h b/src/eval_env.h
index ca7daa4..677dc21 100644
--- a/src/eval_env.h
+++ b/src/eval_env.h
@@ -55,7 +55,7 @@ private:
TokenList parsed_;
};
-/// An invokable build command and associated metadata (description, etc.).
+/// An invocable build command and associated metadata (description, etc.).
struct Rule {
explicit Rule(const std::string& name) : name_(name) {}