From 29c7d9ed0fd3762b6a66b0f5649e68da31abc974 Mon Sep 17 00:00:00 2001 From: Tom Lee Date: Tue, 25 Sep 2018 10:04:43 -0700 Subject: [PATCH] Fix minor typo spotted by lintian --- c++/src/kj/filesystem.c++ | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c++/src/kj/filesystem.c++ b/c++/src/kj/filesystem.c++ index 01bab169d8..9b7a05a913 100644 --- a/c++/src/kj/filesystem.c++ +++ b/c++/src/kj/filesystem.c++ @@ -1511,7 +1511,7 @@ private: entry.set(kj::mv(copy)); } else { if (mode == TransferMode::MOVE) { - KJ_ASSERT(fromDirectory.tryRemove(fromPath), "could't move node", fromPath) { + KJ_ASSERT(fromDirectory.tryRemove(fromPath), "couldn't move node", fromPath) { return false; } } @@ -1543,7 +1543,7 @@ private: entry.set(kj::mv(copy)); } else { if (mode == TransferMode::MOVE) { - KJ_ASSERT(fromDirectory.tryRemove(fromPath), "could't move node", fromPath) { + KJ_ASSERT(fromDirectory.tryRemove(fromPath), "couldn't move node", fromPath) { return false; } } @@ -1560,7 +1560,7 @@ private: // Since symlinks are immutable, we can implement LINK the same as COPY. entry.init(SymlinkNode { lastModified.orDefault(clock.now()), kj::mv(*content) }); if (mode == TransferMode::MOVE) { - KJ_ASSERT(fromDirectory.tryRemove(fromPath), "could't move node", fromPath) { + KJ_ASSERT(fromDirectory.tryRemove(fromPath), "couldn't move node", fromPath) { return false; } }