summaryrefslogtreecommitdiffstats
path: root/src/state.h
diff options
context:
space:
mode:
authorMo Zhou <cdluminate@gmail.com>2018-09-06 04:09:48 (GMT)
committerMo Zhou <cdluminate@gmail.com>2018-09-06 04:09:48 (GMT)
commit33448c830bc0c72a1bee767934121c08f45d45a7 (patch)
tree46ed06783d153e21224ed47f0086bd49a450ebdb /src/state.h
parentca041d88f4d610332aa48c801342edfafb622ccb (diff)
downloadNinja-33448c830bc0c72a1bee767934121c08f45d45a7.zip
Ninja-33448c830bc0c72a1bee767934121c08f45d45a7.tar.gz
Ninja-33448c830bc0c72a1bee767934121c08f45d45a7.tar.bz2
Misc typo fixes by https://github.com/codespell-project/codespell/
Diffstat (limited to 'src/state.h')
-rw-r--r--src/state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.h b/src/state.h
index 54e9dc5..6fe886c 100644
--- a/src/state.h
+++ b/src/state.h
@@ -33,7 +33,7 @@ struct Rule;
/// Pools are scoped to a State. Edges within a State will share Pools. A Pool
/// will keep a count of the total 'weight' of the currently scheduled edges. If
/// a Plan attempts to schedule an Edge which would cause the total weight to
-/// exceed the depth of the Pool, the Pool will enque the Edge instead of
+/// exceed the depth of the Pool, the Pool will enqueue the Edge instead of
/// allowing the Plan to schedule it. The Pool will relinquish queued Edges when
/// the total scheduled weight diminishes enough (i.e. when a scheduled edge
/// completes).