From c6022381f523ae36b2636674f5480298c22ffca5 Mon Sep 17 00:00:00 2001 From: Alex Moreno Date: Wed, 11 Jun 2014 15:17:17 +0800 Subject: [PATCH] Fixed typo --- docs/assertions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/assertions.md b/docs/assertions.md index 3bdc8449..47826b04 100644 --- a/docs/assertions.md +++ b/docs/assertions.md @@ -9,7 +9,7 @@ Most of these macros come in two forms: ## Natural Expressions The ```REQUIRE``` family of macros tests an expression and aborts the test case if it fails. -The ```CHECK``` family are equivalent but execution continues in the same test case even if the assertion fails. This is useful if you have a series of essentially orthoginal assertions and it is useful to see all the results rather than stopping at the first failure. +The ```CHECK``` family are equivalent but execution continues in the same test case even if the assertion fails. This is useful if you have a series of essentially orthogonal assertions and it is useful to see all the results rather than stopping at the first failure. * **REQUIRE(** _expression_ **)** and * **CHECK(** _expression_ **)**