Skip to content

Commit 61b22fc

Browse files
committed
Typo in readme
1 parent 05606e0 commit 61b22fc

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ Installation
3030

3131
4. Restart Cloud9 in Debug Mode by appending the __debug=2__ parameter to the URL. For example, if your workspace is accessible at https://ide.c9.io/username/workspace_name, you can enable the debug mode from https://ide.c9.io/username/workspace_name?debug=2 . You can also enable the debug mode simply from the menu __Tools__ -> __Developer__ -> __Start in Debug Mode__.
3232
```diff
33-
- Please note the following: -
33+
- Please note the following -
3434
```
35-
There is currently no other way to install custom plugins to Cloud9 than using the debug mode, since the Cloud9 API doesn't allow publishing new packages at the moment. See <https://community.c9.io/t/unable-to-publish-c9-package/6235>.
35+
There is currently no way to install custom plugins to Cloud9 other than using the debug mode, since the Cloud9 API doesn't allow publishing new packages at the moment. See <https://community.c9.io/t/unable-to-publish-c9-package/6235>.
3636

37-
5. Use Cloud9 as usual, and warnings will be displayed in the IDE when working on PHP files if PHP CodeSniffer detects any error based on PHPCompatibility & WordPress Coding Standards.
37+
5. Use Cloud9 as usual, and warnings will be displayed in the IDE when working on PHP files if PHP CodeSniffer detects any error based on PHPCompatibility & WordPress Coding Standards rules.
3838

3939
Usage
4040
-----
@@ -44,10 +44,10 @@ This plugin will display errors found by PHPCS directly in the IDE, as you can s
4444

4545
This plugin will do the following:
4646

47-
* Run PHPCS on the current PHP file using WordPress Coding Standards and PHPCompatibility.
47+
* Run PHPCS on the current PHP file using WordPress Coding Standards and PHPCompatibility rules.
4848
* If errors are found, a warning icon will be displayed next to the line number.
4949
* When hovering that icon, a tooltip explaining the error will be displayed.
50-
* In the message, icons will be displayed for helping you distinguish if this is a warning, an error, and if it can be fixed automatically by PHPCF.
50+
* In the message, icons will be displayed for helping you distinguish if this is a warning or an error, and if it can be fixed automatically by PHPCBF.
5151
* In the message, the line and column where the error can be found in the code will be displayed inside parenthesis.
5252
* In the code, errors will be underlined with a red dotted line, and highlighted in red so you can rapidly identify them. Please note that the highlighted characters might not actually be accurate.
5353
* Since the plugin can only run in debug mode and since a green debug bar is always displayed at the top of the screen when in debug mode, the plugin is also loading a CSS stylesheet in order to hide that annoying debug bar.
@@ -56,15 +56,15 @@ This plugin will do the following:
5656

5757
Since there is no simple way to allow HTML in these tooltips, we use some custom unicode characters for displaying more meaningful messages:
5858

59-
| Displayed Characters | Meaning |
60-
| ---------------------| --------------------------------------------------------------------------------------------------------------------------------------------------- |
61-
| 🔴 Red Circle | The identified issue is considered to be an __error__ by PHPCS. |
62-
| 🔶 Yellow Diamond | The identified issue is considered to be a __warning__ by PHPCS. |
63-
| ✔ Checkmark | The issue can be __resolved automatically by running PHPCBF__. Please note that the plugin doesn't run PHPCBF (and doesn't actually fix any issue). |
64-
| 𝗪𝗣𝗖𝗦 | The issue was identified using __WordPress__ Coding Standards Rules. |
65-
| 𝗣𝗛𝗣𝗖𝗼𝗺𝗽𝗮𝘁𝗶𝗯𝗶𝗹𝗶𝘁𝘆 | The issue was identified using __PHPCompatibility__ Rules. |
66-
| ➀ to ➈ | Any number displayed in a circle represent the __severity__ level of the issue. ➄ is the default severity and is never displayed. |
67-
| (𝟏𝟐𝟑:𝟕𝟖𝟗) | Numbers displayed inside parenthesis refer to the __line__ and __column__ where the issue can be found. In this example, look at line 123 and column 789. |
59+
| Displayed Characters | Meaning |
60+
| ---------------------| --------------------------------------------------------------------------------------------------------------------------------------------------------- |
61+
| 🔴 Red Circle | The identified issue is considered to be an __error__ by PHPCS. |
62+
| 🔶 Yellow Diamond | The identified issue is considered to be a __warning__ by PHPCS. |
63+
| ✔ Checkmark | The issue can be __resolved automatically by running PHPCBF__. Please note that the plugin doesn't run PHPCBF (and doesn't actually fix any issue). |
64+
| 𝗪𝗣𝗖𝗦 | The issue was identified using __WordPress__ Coding Standards Rules. |
65+
| 𝗣𝗛𝗣𝗖𝗼𝗺𝗽𝗮𝘁𝗶𝗯𝗶𝗹𝗶𝘁𝘆 | The issue was identified using __PHPCompatibility__ Rules. |
66+
| ➀ to ➈ | Any number displayed in a circle represent the __severity__ level of the issue. ➄ is the default severity and is never displayed. |
67+
| (𝟏𝟐𝟑:𝟕𝟖𝟗) | Numbers displayed inside parenthesis refer to the __line__ and __column__ where the issue can be found. In this example, look at line 123 and column 789. |
6868

6969
Ressources
7070
----------

0 commit comments

Comments
 (0)