Skip to content

Commit b1751f0

Browse files
authored
fix: typo in comment (#1084)
1 parent fba1558 commit b1751f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/uui-button-copy-text/lib/uui-button-copy-text.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class UUIButtonCopyTextElement extends UUIButtonElement {
7373
const el = document.getElementById(this.copyFrom);
7474
if (el) {
7575
// Override the value to copy, if the element has a value property
76-
// Such as uui-input or uui-textarea or native inout elements
76+
// Such as uui-input or uui-textarea or native input elements
7777
if ('value' in el) {
7878
valueToCopy = (el as any).value;
7979
} else {

0 commit comments

Comments
 (0)