From 20bda9a3fba1581e4193c363bec0f06ccff17730 Mon Sep 17 00:00:00 2001 From: Jean-Bernard Ratte Date: Wed, 21 Oct 2015 21:21:21 -0400 Subject: [PATCH] update example --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 4fbacfa..3d2488d 100644 --- a/README.rst +++ b/README.rst @@ -29,9 +29,9 @@ Example :: >>> from pyjarowinkler import distance - >>> print distance.get_jaro_distance("hello", "haloa", winkler_ajustment=True) + >>> print distance.get_jaro_distance("hello", "haloa", winkler=True, scaling=0.1) # Scaling is 0.1 by default 0.76 - >>> print distance.get_jaro_distance("hello", "haloa", winkler_ajustment=False) + >>> print distance.get_jaro_distance("hello", "haloa", winkler=False, scaling=0.1) 0.733333333333 :Version: 1.7 of 2015-10-21