Browse Source

tweak crypter exception message.

Taylor Otwell 13 years ago
parent
commit
ce8c230e72
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/crypter.php

+ 1 - 1
laravel/crypter.php

@@ -39,7 +39,7 @@ class Crypter {
 
 		if (trim((string) $this->key) === '')
 		{
-			throw new \Exception('The encryption class can not be used without an encryption key.');
+			throw new \Exception('The encryption class may not be used without an encryption key.');
 		}
 	}