Commit a6ad5c6d by Taylor Otwell

Merge pull request #671 from ErikDubbelboer/docfix

Fix error in comment.
parents 21d8a266 11b9f522
...@@ -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