diff --git a/src/PHPCodeSniffer/Finder.php b/src/PHPCodeSniffer/Finder.php
index b3a478be87d2c92fb7d4410bd3db97bd4dfa613f..c15c2763cc32c1189682cca87dcd284bc0a70362 100644
--- a/src/PHPCodeSniffer/Finder.php
+++ b/src/PHPCodeSniffer/Finder.php
@@ -61,7 +61,7 @@ class Finder
             $paths
         );
 
-        return $this->createStandardsFromPath($paths);
+        return $this->createStandardsFromPaths($paths);
     }
 
     /**
@@ -70,7 +70,7 @@ class Finder
      * @param array $path
      * @return Standards
      */
-    protected function createStandardsFromPath(array $paths)
+    protected function createStandardsFromPaths(array $paths)
     {
         return $this->factory->create($paths);
     }