summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Configuration.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Configuration.php b/src/Configuration.php
index 9b25122..6c17bc7 100644
--- a/src/Configuration.php
+++ b/src/Configuration.php
@@ -173,7 +173,7 @@ class Configuration
*/
public function getWordThreshold()
{
- @trigger_error('getWordThreshold was replaced with getCharThreshold and will be removed in version 2.0', E_USER_DEPRECATED);
+ @trigger_error('getWordThreshold was replaced with getCharThreshold and will be removed in version 3.0', E_USER_DEPRECATED);
return $this->charThreshold;
}
@@ -185,7 +185,7 @@ class Configuration
*/
public function setWordThreshold($charThreshold)
{
- @trigger_error('setWordThreshold was replaced with setCharThreshold and will be removed in version 2.0', E_USER_DEPRECATED);
+ @trigger_error('setWordThreshold was replaced with setCharThreshold and will be removed in version 3.0', E_USER_DEPRECATED);
$this->charThreshold = $charThreshold;