Skip to content

Commit 389eb5c

Browse files
committed
Fix incorrect case of a few words
1 parent 6e0076e commit 389eb5c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

_posts/03-04-01-Standard-PHP-Library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ primarily of commonly needed datastructure classes (stack, queue, heap, and so o
1111
over these datastructures or your own classes which implement SPL interfaces.
1212

1313
* [Read about the SPL][spl]
14-
* [SPL video course on Lynda.com(Paid)][spllynda]
14+
* [SPL video course on Lynda.com (paid)][spllynda]
1515

1616

1717
[spl]: https://secure.php.net/book.spl

_posts/16-10-01-Books.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ for modern, secure, and fast cryptography.
2121

2222
* [Build APIs You Won't Hate](https://apisyouwonthate.com/) - Everyone and their dog wants an API,
2323
so you should probably learn how to build them.
24-
* [Modern PHP](http://shop.oreilly.com/product/0636920033868.do) - covers modern PHP features, best practices, testing, tuning, deployment and setting up a dev environment.
24+
* [Modern PHP](http://shop.oreilly.com/product/0636920033868.do) - Covers modern PHP features, best practices, testing, tuning, deployment and setting up a dev environment.
2525
* [Building Secure PHP Apps](https://leanpub.com/buildingsecurephpapps) - Learn the security basics that a senior
2626
developer usually acquires over years of experience, all condensed down into one quick and easy handbook
2727
* [Modernizing Legacy Applications In PHP](https://leanpub.com/mlaphp) - Get your code under control in a series of

pages/The-Basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function test($a)
8080
Switch statements are a great way to avoid typing endless if's and elseif's, but there are a few things to be aware of:
8181
8282
- Switch statements only compare values, and not the type (equivalent to '==')
83-
- They Iterate case by case until a match is found. If no match is found, then the default is used (if defined)
83+
- They iterate case by case until a match is found. If no match is found, then the default is used (if defined)
8484
- Without a 'break', they will continue to implement each case until reaching a break/return
8585
- Within a function, using 'return' alleviates the need for 'break' as it ends the function
8686

0 commit comments

Comments
 (0)