aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMike Coddington <mike@coddington.us>2017-10-11 16:22:50 -0500
committerGitHub <noreply@github.com>2017-10-11 16:22:50 -0500
commitaa7c19cc0d2658452ad841709eb2924be93ee3dc (patch)
treea89badb4bc92fedadb09e6f70c5d393eef5962c9
parentcd4c11c38813a026ad5ddc040cbbcffdc70bd832 (diff)
downloadzxcvbn-c-aa7c19cc0d2658452ad841709eb2924be93ee3dc.tar.gz
Fix markdown
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index a4a0c97..74a07b2 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ The original CoffeeScript version is available at
An article on the reasons for zxcvbn is at
https://blogs.dropbox.com/tech/2012/04/zxcvbn-realistic-password-strength-estimation/
-##Building
+## Building
The makefile will build several test programs to test the code. It shows the steps needed
to use the code in C and C++ programs, using the dictionary data read from file or included
@@ -32,7 +32,7 @@ Rename `zxcvbn.c` to `zxcvbn.cpp` (or whatever your compiler uses) to compile as
The `dict*.h` and `zxcvbn.dict` files are generated by the dictgen program compiled from
dict-generate.cpp (see makefile for details).
-##Using
+## Using
Initially call `ZxcvbnInit()` with the pathname of the `zxcvbn.dict` file. This can be
omitted when dictionary data is included in the executable.
@@ -73,7 +73,7 @@ version when there are 4 or less parts, but will differ significantly when there
parts (which is likely to be a rare occurrence).
-##References
+## References
The original CoffeeScript version is available at
https://github.com/lowe/zxcvbn