summaryrefslogtreecommitdiffstats
path: root/src/missing_deps.cc
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/missing_deps.cc
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/missing_deps.cc')
-rw-r--r--src/missing_deps.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/missing_deps.cc b/src/missing_deps.cc
index 78feb49..de76620 100644
--- a/src/missing_deps.cc
+++ b/src/missing_deps.cc
@@ -116,7 +116,7 @@ void MissingDependencyScanner::ProcessNodeDeps(Node* node, Node** dep_nodes,
// rebuild this target when the build is reconfigured", but build.ninja is
// often generated by a configuration tool like cmake or gn. The rest of
// the build "implicitly" depends on the entire build being reconfigured,
- // so a missing dep path to build.ninja is not an actual missing dependecy
+ // so a missing dep path to build.ninja is not an actual missing dependency
// problem.
if (deplog_node->path() == "build.ninja")
return;