From 687544053e3a6e0561ab2603fc19b437117cb653 Mon Sep 17 00:00:00 2001 From: Curt Grimes Date: Thu, 21 Jul 2022 01:48:02 -0500 Subject: [PATCH] docs(useClipboard): fix missing punctuation and add Permissions API link (#1970) --- packages/core/useClipboard/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/useClipboard/index.md b/packages/core/useClipboard/index.md index f761c58e442..a83fc1289c8 100644 --- a/packages/core/useClipboard/index.md +++ b/packages/core/useClipboard/index.md @@ -4,7 +4,7 @@ category: Browser # useClipboard -Reactive [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API). Provides the ability to respond to clipboard commands (cut, copy, and paste) as well as to asynchronously read from and write to the system clipboard. Access to the contents of the clipboard is gated behind the Permissions API without user permission, reading or altering the clipboard contents is not permitted. +Reactive [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API). Provides the ability to respond to clipboard commands (cut, copy, and paste) as well as to asynchronously read from and write to the system clipboard. Access to the contents of the clipboard is gated behind the [Permissions API](https://developer.mozilla.org/en-US/docs/Web/API/Permissions_API). Without user permission, reading or altering the clipboard contents is not permitted. ## Usage