diff options
author | GoT <PierreRambaud@users.noreply.github.com> | 2014-03-27 11:56:17 +0100 |
---|---|---|
committer | GoT <PierreRambaud@users.noreply.github.com> | 2014-03-27 11:56:17 +0100 |
commit | d20cf4069756866dd96877efe152550be4d9f80d (patch) | |
tree | 343463d7ea8b827b60c81f0e656789b3ddce9f05 /README.markdown | |
parent | 62e8c1d76902e6f22cb9f7b3abd43e757b4130a3 (diff) |
Update README.markdown
Add code block for validate_slength.
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/README.markdown b/README.markdown index 76c546f..874655c 100644 --- a/README.markdown +++ b/README.markdown @@ -1199,13 +1199,13 @@ to a number. The following values will pass: - validate_slength("discombobulate",17) - validate_slength(["discombobulate","moo"],17) + validate_slength("discombobulate",17) + validate_slength(["discombobulate","moo"],17) -The following valueis will not: +The following values will not: - validate_slength("discombobulate",1) - validate_slength(["discombobulate","thermometer"],5) + validate_slength("discombobulate",1) + validate_slength(["discombobulate","thermometer"],5) |