From: Kennedy Clark Date: Tue, 15 Aug 2006 01:37:28 +0000 (+0000) Subject: Fix typo X-Git-Tag: 5.7099_04~372 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=9183745a1266d667b117db56915c25ce4d78ae78 Fix typo --- diff --git a/lib/Catalyst/Manual/Tutorial/Testing.pod b/lib/Catalyst/Manual/Tutorial/Testing.pod index 0ff7916..c361921 100644 --- a/lib/Catalyst/Manual/Tutorial/Testing.pod +++ b/lib/Catalyst/Manual/Tutorial/Testing.pod @@ -174,7 +174,7 @@ editor and enter the following: $_->get_ok("http://localhost/", "Check redirect of base URL") for $ua1, $ua2; # Use title_is() to check the contents of the ... tags $_->title_is("Login", "Check for login title") for $ua1, $ua2; - # Use content_contains() to match on test in the html body + # Use content_contains() to match on text in the html body $_->content_contains("You need to log in to use this application", "Check we are NOT logged in") for $ua1, $ua2;