Ondrej -onovy- Novy 12 лет назад
Родитель
Сommit
6cd1f03834

+ 1 - 1
lib/Predis/Client.php

@@ -206,7 +206,7 @@ class Client implements ClientInterface
     }
 
     /**
-     * Dinamically invokes a Redis command with the specified arguments.
+     * Dynamically invokes a Redis command with the specified arguments.
      *
      * @param string $method The name of a Redis command.
      * @param array $arguments The arguments for the command.

+ 1 - 1
lib/Predis/Option/CustomOption.php

@@ -12,7 +12,7 @@
 namespace Predis\Option;
 
 /**
- * Implements a generic class used to dinamically define a client option.
+ * Implements a generic class used to dynamically define a client option.
  *
  * @author Daniele Alessandri <suppakilla@gmail.com>
  */

+ 2 - 2
lib/Predis/Replication/ReplicationStrategy.php

@@ -99,7 +99,7 @@ class ReplicationStrategy
     /**
      * Marks a command as a read-only operation. When the behaviour of a
      * command can be decided only at runtime depending on its arguments,
-     * a callable object can be provided to dinamically check if the passed
+     * a callable object can be provided to dynamically check if the passed
      * instance of a command performs write operations or not.
      *
      * @param string $commandID ID of the command.
@@ -119,7 +119,7 @@ class ReplicationStrategy
     /**
      * Marks a Lua script for EVAL and EVALSHA as a read-only operation. When
      * the behaviour of a script can be decided only at runtime depending on
-     * its arguments, a callable object can be provided to dinamically check
+     * its arguments, a callable object can be provided to dynamically check
      * if the passed instance of EVAL or EVALSHA performs write operations or
      * not.
      *

+ 1 - 1
lib/Predis/Transaction/MultiExecContext.php

@@ -183,7 +183,7 @@ class MultiExecContext implements BasicClientInterface, ExecutableContextInterfa
     }
 
     /**
-     * Dinamically invokes a Redis command with the specified arguments.
+     * Dynamically invokes a Redis command with the specified arguments.
      *
      * @param string $method Command ID.
      * @param array $arguments Arguments for the command.