Commit 11b9f522 by Erik Dubbelboer

fix error in comment

Signed-off-by: Erik Dubbelboer <erik@dubbelboer.com>
parent d417eb56
...@@ -103,7 +103,7 @@ class Lang { ...@@ -103,7 +103,7 @@ class Lang {
* $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 @@ class Lang { ...@@ -249,4 +249,4 @@ class Lang {
return (string) $this->get(); return (string) $this->get();
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment