From c4fc06b0768bd30c5d93e7c1829395cc714cbfc1 Mon Sep 17 00:00:00 2001 From: PetrWolf Date: Tue, 14 Feb 2012 18:30:14 +0100 Subject: Fix tabs, typos --- src/disk_interface.h | 6 +++--- src/disk_interface_test.cc | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/disk_interface.h b/src/disk_interface.h index 04e64ec..c0f5ee5 100644 --- a/src/disk_interface.h +++ b/src/disk_interface.h @@ -34,9 +34,9 @@ struct DiskInterface { /// Create a directory, returning false on failure. virtual bool MakeDir(const string& path) = 0; - /// Create a file, with the specified name and contens + /// Create a file, with the specified name and contents /// Returns true on success, false on failure - virtual bool WriteFile(const string & path, const string & contetns) = 0; + virtual bool WriteFile(const string & path, const string & contents) = 0; /// Read a file to a string. Fill in |err| on error. virtual string ReadFile(const string& path, string* err) = 0; @@ -58,7 +58,7 @@ struct RealDiskInterface : public DiskInterface { virtual ~RealDiskInterface() {} virtual TimeStamp Stat(const string& path); virtual bool MakeDir(const string& path); - virtual bool WriteFile(const string & path, const string & contens); + virtual bool WriteFile(const string & path, const string & contents); virtual string ReadFile(const string& path, string* err); virtual int RemoveFile(const string& path); }; diff --git a/src/disk_interface_test.cc b/src/disk_interface_test.cc index 62c66f2..052a94b 100644 --- a/src/disk_interface_test.cc +++ b/src/disk_interface_test.cc @@ -103,8 +103,8 @@ struct StatTest : public StateTestWithBuiltinRules, // DiskInterface implementation. virtual TimeStamp Stat(const string& path); virtual bool WriteFile(const string& path, const string & contents) { - assert(false); - return true; + assert(false); + return true; } virtual bool MakeDir(const string& path) { assert(false); -- cgit v0.12