-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
docs(std): add some missing JSDoc ws/mod.ts #8428
Conversation
Please run |
done |
std/ws/mod.ts
Outdated
@@ -31,6 +31,9 @@ export interface WebSocketCloseEvent { | |||
reason?: string; | |||
} | |||
|
|||
/** | |||
* Returns true if input value is a WebSocketCloseEvent, false otherwise. | |||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The formatting here is odd, and this could fit on a single line of text: https://deno.land/manual@v1.5.3/contributing/style_guide#use-jsdoc-for-exported-symbols
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about right now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks @ThenMorning
You are welcome. |
#7487