Skip to content
This repository has been archived by the owner on Sep 24, 2021. It is now read-only.

Commit

Permalink
Fix spelling of delimitors.
Browse files Browse the repository at this point in the history
  • Loading branch information
rictic committed Feb 15, 2017
1 parent 9ab8dbe commit 5cd2dd9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased

### New Lint Rules
- unbalanced-polymer-delimitors: finds unbalanced delimitors in polymer databinding expressions.
- unbalanced-polymer-delimiters: finds unbalanced delimiters in polymer databinding expressions.

## [0.1.2] - 2017-02-14

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ import stripIndent = require('strip-indent');
* side.
*/
export class UnbalancedDelimiters extends HtmlRule {
code = 'unbalanced-polymer-delimitors';
code = 'unbalanced-polymer-delimiters';
description = stripIndent(`
Matches unbalanced delimitors around Polymer databinding expressions.
Matches unbalanced delimiters around Polymer databinding expressions.
For example, {{foo} is missing a } at the end, it should instead be
{{foo}}.`);
Expand Down
2 changes: 1 addition & 1 deletion src/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

import './html/dom-module-name-or-is';
import './html/move-style-into-template';
import './polymer/unbalanced-delimitors';
import './polymer/unbalanced-delimiters';
4 changes: 2 additions & 2 deletions src/test/polymer/unbalanced-delimiters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {WarningPrettyPrinter} from '../util';

const fixtures_dir = path.join(__dirname, '..', '..', '..', 'test');

suite('unbalanced-polymer-delimitors', () => {
suite('unbalanced-polymer-delimiters', () => {
let analyzer: Analyzer;
let warningPrinter: WarningPrettyPrinter;
let linter: Linter;
Expand All @@ -33,7 +33,7 @@ suite('unbalanced-polymer-delimitors', () => {
analyzer = new Analyzer({urlLoader: new FSUrlLoader(fixtures_dir)});
warningPrinter = new WarningPrettyPrinter(analyzer);
linter = new Linter(
registry.getRules(['unbalanced-polymer-delimitors']), analyzer);
registry.getRules(['unbalanced-polymer-delimiters']), analyzer);
});

test('works in the trivial case', async() => {
Expand Down
2 changes: 1 addition & 1 deletion test/mocha.opts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
--ui tdd
--require source-map-support/register

0 comments on commit 5cd2dd9

Please sign in to comment.