From 87bc9a2316bef035a0ceea036832717412455447 Mon Sep 17 00:00:00 2001 From: Avril Date: Thu, 25 Jun 2020 14:12:03 +0100 Subject: [PATCH] oops --- README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index c7329b8..573311d 100644 --- a/README.org +++ b/README.org @@ -21,7 +21,7 @@ $ make && sudo make install #+END_SRC - The install path can be changed by editing the ~INSTALL~ and ~INSTALL-BIN~ paths in the [[file:./Makefile][Makefile]]. + The install path can be changed by editing the ~INSTALL~, ~INSTALL-BIN~ and ~INSTALL-INCLUDE~ paths in the [[file:./Makefile][Makefile]]. *** Uninstall To remove installed binaries, run: @@ -203,7 +203,7 @@ #+BEGIN_SRC javascript const hash1 = new Kana(Kana.ALGO_DEFAULT, new Salt("salt~")).once("input string~"); //Allocates the exact space required for the output string. - const hash2 = Kana.single(Kana.ALGO_DEFAULT, new Salt("salt~")).once("input string~"); //Allocates the max space required for the output string, instead of the exact. Might be faster. + const hash2 = Kana.single(Kana.ALGO_DEFAULT, new Salt("salt~"), "input string~"); //Allocates the max space required for the output string, instead of the exact. Might be faster. #+END_SRC *** Interface documentation