Skip to content

Commit

Permalink
Mixed both snippets in just one.
Browse files Browse the repository at this point in the history
  • Loading branch information
phansys committed Jun 16, 2015
1 parent ef30569 commit 2f4d218
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions contributing/code/standards.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,13 @@ instead of:

.. code-block:: php
if (1 == $integerExpected) {
// use
if (1 === $integerExpected) {
// ...
}
it should be:

.. code-block:: php
if (1 === $integerExpected) {
// instead of
if (1 == $integerExpected) {
// ...
}
Expand Down

0 comments on commit 2f4d218

Please sign in to comment.