Commit 921e232d authored by Austin White's avatar Austin White

Typo corrections

parent 37cd08fa
......@@ -16,7 +16,7 @@
If you are using the Auth class, you are strongly encouraged to hash and salt all passwords. Web development must be done responsibly. Salted, hashed passwords make a rainbow table attack against your user's passwords impractical.
Salting and hashing passwords is done using the **Hash** class. The Hash class is uses the **bcrypt** hashing algorithm. Check out this example:
Salting and hashing passwords is done using the **Hash** class. The Hash class uses the **bcrypt** hashing algorithm. Check out this example:
$password = Hash::make('secret');
......
......@@ -332,7 +332,7 @@ This routing convention may not be desirable for every situation, so you may als
<a name="cli-route-testing"></a>
## CLI Route Testing
You may test your routes using Laravel's "Artisan" CLI. Simple specify the request method and URI you want to use. The route response will be var_dump'd back to the CLI.
You may test your routes using Laravel's "Artisan" CLI. Simply specify the request method and URI you want to use. The route response will be var_dump'd back to the CLI.
#### Calling a route via the Artisan CLI:
......
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