Index: trunk/extensions/ArticleFeedbackv5/modules/ext.articleFeedbackv5/ext.articleFeedbackv5.startup.js |
— | — | @@ -46,8 +46,8 @@ |
47 | 47 | 'current': mw.config.get( 'wgCategories', [] ) |
48 | 48 | }; |
49 | 49 | |
50 | | - // Categories are configures with underscores, but article's categories are returned with |
51 | | - // spaces instead. Revent to underscores here for sane comparison. |
| 50 | + // Categories are configured with underscores, but article's categories are returned with |
| 51 | + // spaces instead. Revert to underscores here for sane comparison. |
52 | 52 | for( cat in categories['current'] ) { |
53 | 53 | categories['current'][cat] = categories['current'][cat].replace(/\s/gi, '_'); |
54 | 54 | } |