From b251aba9d8923ed1cab14d4608ef6bd931382ab3 Mon Sep 17 00:00:00 2001 From: Andrew Tulloch Date: Thu, 15 Mar 2012 08:45:07 +1100 Subject: [PATCH] Fixed up Markdown formatting for the String Similarity section in README (indented code block) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 277eb7a9c..38bce5140 100644 --- a/README.md +++ b/README.md @@ -53,10 +53,10 @@ String Similiarity The similiarity between two strings can be accomplished with a Jaro–Winkler distance. - var jaroWinklerDistance = require('natural').JaroWinklerDistance; + var jaroWinklerDistance = require('natural').JaroWinklerDistance; - console.log('apple', 'applet'); // outputs 0.9666666666666667 - console.log(d('not', 'same')); // output NaN + console.log('apple', 'applet'); // outputs 0.9666666666666667 + console.log(d('not', 'same')); // output NaN Stemmers --------