Skip to content

Commit 6e0076e

Browse files
committed
Add missing punctuation
1 parent e7a7bae commit 6e0076e

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You should read the `CONTRIBUTING.md` file for precise instructions and tips. Bu
2626

2727
### Contributor Style Guide
2828

29-
1. Use American English spelling (*primary English repo only*)
29+
1. Use American English spelling (*primary English repo only*).
3030
2. Use four (4) spaces to indent text; do not use tabs.
3131
3. Wrap all text to 120 characters.
3232
4. Code samples should adhere to PSR-1 or higher.

_posts/05-06-01-Internationalization-and-Localization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ don't try this if your project will contain more than a couple of pages.
3232
The most classic way and often taken as reference for i18n and l10n is a [Unix tool called `gettext`][gettext]. It dates
3333
back to 1995 and is still a complete implementation for translating software. It is easy enough to get running, while
3434
still sporting powerful supporting tools. It is about Gettext we will be talking here. Also, to help you not get messy
35-
over the command-line, we will be presenting a great GUI application that can be used to easily update your l10n source
35+
over the command-line, we will be presenting a great GUI application that can be used to easily update your l10n source.
3636

3737
### Other tools
3838

_posts/11-02-01-Test-Driven-Development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The other use for unit tests is contributing to open source. If you can write a
3333
which accepts pull requests then you should suggest this as a requirement.
3434

3535
[PHPUnit](https://phpunit.de/) is the de-facto testing framework for writing unit tests for PHP applications, but there
36-
are several alternatives
36+
are several alternatives:
3737

3838
* [atoum](https://github.com/atoum/atoum)
3939
* [Kahlan](https://github.com/crysalead/kahlan)

_posts/16-08-01-Sites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: Other Useful Resources
99
### Cheatsheets
1010

1111
* [PHP Cheatsheets](http://phpcheatsheets.com/) - for variable comparisons, arithmetics and variable testing in various PHP versions.
12-
* [Modern PHP Cheatsheet](https://github.com/smknstd/modern-php-cheatsheet) documents modern (PHP 7.0+) idioms in a unified document.
12+
* [Modern PHP Cheatsheet](https://github.com/smknstd/modern-php-cheatsheet) - documents modern (PHP 7.0+) idioms in a unified document.
1313
* [OWASP Security Cheatsheets](https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series) - provides a concise collection of high value information on specific application security topics.
1414

1515
### More best practices

pages/Design-Patterns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ add new output types without affecting the client code.
142142
143143
You will see how each concrete 'output' class implements an OutputInterface - this serves two purposes, primarily it
144144
provides a simple contract which must be obeyed by any new concrete implementations. Secondly by implementing a common
145-
interface you will see in the next section that you can now utilise [Type Hinting](http://php.net/language.oop5.typehinting) to ensure that the client which is utilising these behaviours is of the correct type in
146-
this case 'OutputInterface'.
145+
interface you will see in the next section that you can now utilise [Type Hinting](http://php.net/language.oop5.typehinting) to ensure that the client which is utilising these behaviours is of the correct type,
146+
in this case 'OutputInterface'.
147147
148148
The next snippet of code outlines how a calling client class might use one of these algorithms and even better set the
149149
behaviour required at runtime:

pages/The-Basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ return ($a == 5) ? 'yay' : 'nope'; // this example will return 'yay'
362362
{% endhighlight %}
363363
364364
It should be noted that you do not need to use a ternary operator for returning a boolean value. An example of this
365-
would be.
365+
would be:
366366
367367
{% highlight php %}
368368
<?php

0 commit comments

Comments
 (0)