fix error in comment

Signed-off-by: Erik Dubbelboer <erik@dubbelboer.com>
This commit is contained in:
Erik Dubbelboer 2012-05-12 18:28:45 +02:00
parent d417eb5664
commit 11b9f52239
1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ public static function has($key, $language = null)
* $line = Lang::line('validation.required')->get('sp'); * $line = Lang::line('validation.required')->get('sp');
* *
* // Return a default value if the line doesn't exist * // Return a default value if the line doesn't exist
* $line = Lang::line('validation.required', null, 'Default'); * $line = Lang::line('validation.required')->get(null, 'Default');
* </code> * </code>
* *
* @param string $language * @param string $language
@ -249,4 +249,4 @@ public function __toString()
return (string) $this->get(); return (string) $this->get();
} }
} }