summaryrefslogtreecommitdiffstats
path: root/doc/hacker-guide/en-US/markdown/unittest.md
diff options
context:
space:
mode:
authorAkshataDM <oxta28@gmail.com>2014-03-15 23:33:38 +0530
committerAnand Avati <avati@redhat.com>2014-03-16 11:57:21 -0700
commit9565ac3328dc91bd721a65b6d4e7957929e9ed59 (patch)
tree41295e4564d44e2d5f5e34914b786b1568860207 /doc/hacker-guide/en-US/markdown/unittest.md
parent79d2a9e5b83b4d773e5b821c5c55f24718745cb7 (diff)
Made spelling changes to 19 files
Change-Id: If91cf44578fe0b5176ea01ae5c5962e31606f640 BUG: 1075417 Signed-off-by: AkshataDM <oxta28@gmail.com> Reviewed-on: http://review.gluster.org/7280 Reviewed-by: Varun Shastry <vshastry@redhat.com> Reviewed-by: Anand Avati <avati@redhat.com> Tested-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'doc/hacker-guide/en-US/markdown/unittest.md')
-rw-r--r--doc/hacker-guide/en-US/markdown/unittest.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/hacker-guide/en-US/markdown/unittest.md b/doc/hacker-guide/en-US/markdown/unittest.md
index 65e8b85d5..73fe775d4 100644
--- a/doc/hacker-guide/en-US/markdown/unittest.md
+++ b/doc/hacker-guide/en-US/markdown/unittest.md
@@ -115,7 +115,7 @@ Add the following to your C file:
#include <assert.h>
/*
- * Checks caller responsability against contract
+ * Checks caller responsibility against contract
*/
#define REQUIRE(cond) assert(cond)
@@ -127,7 +127,7 @@ Add the following to your C file:
/*
* While REQUIRE and ENSURE apply to functions, INVARIANT
* applies to classes/structs. It ensures that intances
- * of the class/struct are consistant. In other words,
+ * of the class/struct are consistent. In other words,
* that the instance has not been corrupted.
*/
#define INVARIANT(invariant_fnc) do{ (invariant_fnc) } while (0);