Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typo #502

Merged
merged 1 commit into from May 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/useClipboard/index.md
Expand Up @@ -39,7 +39,7 @@ export interface ClipboardOptions<Source> extends ConfigurableNavigator {
*/
source?: Source
/**
* Mileseconds to reset state of `copied` ref
* Milliseconds to reset state of `copied` ref
*
* @default 1500
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/core/useClipboard/index.ts
Expand Up @@ -19,7 +19,7 @@ export interface ClipboardOptions<Source> extends ConfigurableNavigator {
source?: Source

/**
* Mileseconds to reset state of `copied` ref
* Milliseconds to reset state of `copied` ref
*
* @default 1500
*/
Expand Down
6 changes: 3 additions & 3 deletions packages/core/useWebSocket/index.md
Expand Up @@ -74,7 +74,7 @@ export interface WebSocketOptions {
onError?: (ws: WebSocket, event: Event) => void
onMessage?: (ws: WebSocket, event: MessageEvent) => void
/**
* Send heartbeat for every x mileseconds passed
* Send heartbeat for every x milliseconds passed
*
* @default false
*/
Expand All @@ -88,7 +88,7 @@ export interface WebSocketOptions {
*/
message?: string
/**
* Interval, in mileseconds
* Interval, in milliseconds
*
* @default 1000
*/
Expand All @@ -109,7 +109,7 @@ export interface WebSocketOptions {
*/
retries?: number
/**
* Delay for reconnect, in mileseconds
* Delay for reconnect, in milliseconds
*
* @default 1000
*/
Expand Down
6 changes: 3 additions & 3 deletions packages/core/useWebSocket/index.ts
Expand Up @@ -10,7 +10,7 @@ export interface WebSocketOptions {
onMessage?: (ws: WebSocket, event: MessageEvent) => void

/**
* Send heartbeat for every x mileseconds passed
* Send heartbeat for every x milliseconds passed
*
* @default false
*/
Expand All @@ -23,7 +23,7 @@ export interface WebSocketOptions {
message?: string

/**
* Interval, in mileseconds
* Interval, in milliseconds
*
* @default 1000
*/
Expand All @@ -44,7 +44,7 @@ export interface WebSocketOptions {
retries?: number

/**
* Delay for reconnect, in mileseconds
* Delay for reconnect, in milliseconds
*
* @default 1000
*/
Expand Down