Skip to content

Fix ScalaDocs written as comments #555

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

Merged
merged 1 commit into from
Sep 5, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/main/scala/org/scalajs/dom/Fetch.scala
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,12 @@ trait ResponseInit extends js.Object {
@js.native
trait Body extends js.Object {

/* Contains a Boolean that indicates whether the body has been read.
*/
/** Contains a Boolean that indicates whether the body has been read.
*/
def bodyUsed: Boolean = js.native

/* Takes a Response stream and reads it to completion. It returns a promise that resolves with an ArrayBuffer.
*/
/** Takes a Response stream and reads it to completion. It returns a promise that resolves with an ArrayBuffer.
*/
def arrayBuffer(): js.Promise[ArrayBuffer] = js.native

/** Takes a Response stream and reads it to completion. It returns a promise that resolves with a Blob.
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/org/scalajs/dom/crypto/Crypto.scala
Original file line number Diff line number Diff line change
Expand Up @@ -868,9 +868,9 @@ object KeyFormat {
@js.native
trait RSAPublicKey extends js.Object {

/* modulus, as a base64 URL encoded String */
/** modulus, as a base64 URL encoded String */
def n: String = js.native

/* exponent, as a base64 URL encoded String */
/** exponent, as a base64 URL encoded String */
def e: String = js.native
}