Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
s/String/string
Browse files Browse the repository at this point in the history
  • Loading branch information
valdrinkoshi committed Mar 27, 2018
1 parent ed0413b commit 3a54fb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion paper-dialog.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ interface PaperDialogElement extends Polymer.Element, Polymer.PaperDialogBehavio
/**
* @param type Can be either `entry` or `exit`.
*/
playAnimation(type: String): void;
playAnimation(type: string): void;
}

interface HTMLElementTagNameMap {
Expand Down
2 changes: 1 addition & 1 deletion paper-dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ <h2>Header</h2>
},

/**
* @param {!String} type Can be either `entry` or `exit`.
* @param {!string} type Can be either `entry` or `exit`.
*/
playAnimation: function(type) {
const animation = type === 'entry' ? this.entryAnimation : type === 'exit' ? this.exitAnimation : null;
Expand Down

0 comments on commit 3a54fb8

Please sign in to comment.