Index: trunk/extensions/Push/specials/Push_Body.php |
— | — | @@ -111,7 +111,7 @@ |
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
115 | | - * Outputs the HTML to indicate a push is occuring and |
| 115 | + * Outputs the HTML to indicate a push is occurring and |
116 | 116 | * the JavaScript to needed by the push. |
117 | 117 | * |
118 | 118 | * @since 0.2 |
Index: trunk/extensions/Push/specials/ext.push.special.js |
— | — | @@ -114,7 +114,7 @@ |
115 | 115 | 'action': 'query', |
116 | 116 | 'prop': 'images', |
117 | 117 | 'format': 'json', |
118 | | - 'titles': pageName, |
| 118 | + 'titles': pageName |
119 | 119 | }, |
120 | 120 | function( data ) { |
121 | 121 | if ( data.query ) { |
Index: trunk/extensions/Push/Push.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | */ |
18 | 18 | |
19 | 19 | /** |
20 | | - * This documenation group collects source code files belonging to Push. |
| 20 | + * This documentation group collects source code files belonging to Push. |
21 | 21 | * |
22 | 22 | * @defgroup Push Push |
23 | 23 | */ |
Index: trunk/extensions/Push/Push_Settings.php |
— | — | @@ -5,7 +5,7 @@ |
6 | 6 | * More info can be found at http://www.mediawiki.org/wiki/Extension:Push#Settings |
7 | 7 | * |
8 | 8 | * NOTICE: |
9 | | - * Changing one of these settings can be done by copieng or cutting it, |
| 9 | + * Changing one of these settings can be done by copying or cutting it, |
10 | 10 | * and placing it in LocalSettings.php, AFTER the inclusion of Push. |
11 | 11 | * |
12 | 12 | * @file Push_Settings.php |
Index: trunk/extensions/Push/includes/Push_Tab.php |
— | — | @@ -1,7 +1,7 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | 4 | /** |
5 | | - * Statis class with methods to create and handle the push tab. |
| 5 | + * Static class with methods to create and handle the push tab. |
6 | 6 | * |
7 | 7 | * @since 0.1 |
8 | 8 | * |
Index: trunk/extensions/Push/includes/Push_Functions.php |
— | — | @@ -114,7 +114,7 @@ |
115 | 115 | * @since 0.5 |
116 | 116 | * |
117 | 117 | * @param array $arr |
118 | | - * @param string $id Some string to indentify the array and keep track of it having been flipped. |
| 118 | + * @param string $id Some string to identify the array and keep track of it having been flipped. |
119 | 119 | */ |
120 | 120 | public static function flipKeys( array &$arr, $id ) { |
121 | 121 | static $handledArrays = array(); |
Index: trunk/extensions/Push/includes/ext.push.tab.js |
— | — | @@ -145,7 +145,7 @@ |
146 | 146 | .concat( window.wgPushTemplates ) |
147 | 147 | .concat( window.wgPushPageFiles ) |
148 | 148 | .concat( window.wgPushTemplateFiles ) |
149 | | - .join( '|' ), |
| 149 | + .join( '|' ) |
150 | 150 | }, |
151 | 151 | function( data ) { |
152 | 152 | if ( data.query ) { |
Index: trunk/extensions/Push/api/ApiPush.php |
— | — | @@ -16,7 +16,7 @@ |
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Associative array containing CookieJar objects (values) to be passed in |
20 | | - * order to autenticate to the targets (keys). |
| 20 | + * order to authenticate to the targets (keys). |
21 | 21 | * |
22 | 22 | * @since 0.4 |
23 | 23 | * |
Index: trunk/extensions/Push/api/ApiPushImages.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | |
16 | 16 | /** |
17 | 17 | * Associative array containing CookieJar objects (values) to be passed in |
18 | | - * order to autenticate to the targets (keys). |
| 18 | + * order to authenticate to the targets (keys). |
19 | 19 | * |
20 | 20 | * @since 0.5 |
21 | 21 | * |