diff --git a/README.md b/README.md index 487facd..3518293 100644 --- a/README.md +++ b/README.md @@ -86,9 +86,9 @@ The following method is all that is needed to validate that a user has been thro } } } catch (Exception ex) { - // There was an error validationg the request - // Use your own logging framework to log the Exception - // This was a configuration exception, so we let the user continue + // There was an error validating the request + // Use your own logging framework to log the error + // This was a configuration error, so we let the user continue } } @@ -153,9 +153,9 @@ The following is an example of how to specify the configuration in code: } } } catch (Exception ex) { - // There was an error validationg the request - // Use your own logging framework to log the Exception - // This was a configuration exception, so we let the user continue + // There was an error validating the request + // Use your own logging framework to log the error + // This was a configuration error, so we let the user continue } } ``` @@ -222,9 +222,9 @@ If you have some static html pages (might be behind cache servers) and you have } } } catch (Exception ex) { - // There was an error validationg the request - // Use your own logging framework to log the Exception - // This was a configuration exception, so we let the user continue + // There was an error validating the request + // Use your own logging framework to log the error + // This was a configuration error, so we let the user continue } } ```