Skip to content

Commit f12849f

Browse files
authored
Used single quotes instead
1 parent 97e5476 commit f12849f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/typed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ export default class Typed {
425425
if (this.cursor) return;
426426
this.cursor = document.createElement('span');
427427
this.cursor.className = 'typed-cursor';
428-
this.cursor.setAttribute("aria-hidden", true);
428+
this.cursor.setAttribute('aria-hidden', true);
429429
this.cursor.innerHTML = this.cursorChar;
430430
this.el.parentNode &&
431431
this.el.parentNode.insertBefore(this.cursor, this.el.nextSibling);

0 commit comments

Comments
 (0)