Commit 16806c3a 16806c3a6a2b55cfea15fccf0abe31203ded33d3 by Laurent Jouanneau

Merge pull request #501 from justinmarsan/patch-1

Add missing backslash in assertMatch example
2 parents 371650a2 f749ffc0
......@@ -206,7 +206,7 @@ Asserts that current `HTTP status code <http://www.w3.org/Protocols/rfc2616/rfc2
Asserts that a provided string matches a provided javascript ``RegExp`` pattern::
casper.test.assertMatch('Chuck Norris', /^chuck/i, 'Chuck Norris' first name is Chuck');
casper.test.assertMatch('Chuck Norris', /^chuck/i, 'Chuck Norris\' first name is Chuck');
.. seealso::
......