summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Kerr <dwmkerr@gmail.com>2020-02-18 16:48:06 +0800
committerGitHub <noreply@github.com>2020-02-18 16:48:06 +0800
commitaaa4e8a6437f1f7c72c77faebe57e507db58252b (patch)
tree81d7dd6b086f8e1780e792deb1932593bce615df
parent05f21b3bb96f43ab569839f094bb8ab79e1e46c8 (diff)
parentc9b56ed16cb36dab845c60318485a12fe2e5973d (diff)
Merge pull request #210 from jbednar/master
Fixed typo
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 43fad2b..ea7a63c 100644
--- a/README.md
+++ b/README.md
@@ -573,7 +573,7 @@ See Also:
> Be conservative in what you do, be liberal in what you accept from others.
-Often applied in server application development, this principle states that what you send to others should be as minimal and conformant as possible, but you should be aim to allow non-conformant input if it can be processed.
+Often applied in server application development, this principle states that what you send to others should be as minimal and conformant as possible, but you should aim to allow non-conformant input if it can be processed.
The goal of this principle is to build systems which are robust, as they can handle poorly formed input if the intent can still be understood. However, there are potentially security implications of accepting malformed input, particularly if the processing of such input is not well tested.