diff options
author | 2023-12-11 11:40:51 +0000 | |
---|---|---|
committer | 2023-12-11 11:41:16 +0000 | |
commit | d74c914e36fc2e28edab0d3ed4e1691649c1e189 (patch) | |
tree | 2e84f4b59ed9a79268fcc58a0f5effdc5dc1dc35 /ui/status | |
parent | 5eca978092fd348abfc08595db64582867f1239f (diff) |
Fix typo in log in ninja.go
Test: n/a
Bug: 292304818
Change-Id: I6dcb6bb3e84e15292cbd3acc613c744e3ec039f8
Diffstat (limited to 'ui/status')
-rw-r--r-- | ui/status/ninja.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/status/ninja.go b/ui/status/ninja.go index 1e97908df..f4e3fb806 100644 --- a/ui/status/ninja.go +++ b/ui/status/ninja.go @@ -194,7 +194,7 @@ func (n *NinjaReader) run() { if estimatedDuration > 0 { n.status.SetEstimatedTime(time.Now().Add(estimatedDuration)) - n.status.Verbose(fmt.Sprintf("parallelism: %d, estimiated from total time: %s, critical path time: %s", + n.status.Verbose(fmt.Sprintf("parallelism: %d, estimated from total time: %s, critical path time: %s", parallelism, estimatedDurationFromTotal, estimatedDurationFromCriticalPath)) |