Merge pull request #164 from wendorf/assert_typo
Fix typo: asser -> assert
diff --git a/gbytes/say_matcher.go b/gbytes/say_matcher.go
index ce5ebcb..cbc266c 100644
--- a/gbytes/say_matcher.go
+++ b/gbytes/say_matcher.go
@@ -22,7 +22,7 @@
When Say succeeds, it fast forwards the gbytes.Buffer's read cursor to just after the succesful match.
Thus, subsequent calls to Say will only match against the unread portion of the buffer
-Say pairs very well with Eventually. To asser that a buffer eventually receives data matching "[123]-star" within 3 seconds you can:
+Say pairs very well with Eventually. To assert that a buffer eventually receives data matching "[123]-star" within 3 seconds you can:
Eventually(buffer, 3).Should(Say("[123]-star"))