Browse Source

Fix typo in doc.

Gary Burd 11 years ago
parent
commit
95b854181b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      redis/script.go

+ 1 - 1
redis/script.go

@@ -55,7 +55,7 @@ func (s *Script) args(spec string, keysAndArgs []interface{}) []interface{} {
 	return args
 	return args
 }
 }
 
 
-// Do evalutes the script. Under the covers, Do optimistically evaluates the
+// Do evaluates the script. Under the covers, Do optimistically evaluates the
 // script using the EVALSHA command. If the command fails because the script is
 // script using the EVALSHA command. If the command fails because the script is
 // not loaded, then Do evaluates the script using the EVAL command (thus
 // not loaded, then Do evaluates the script using the EVAL command (thus
 // causing the script to load).
 // causing the script to load).