Skip to content

Commit 9ce3258

Browse files
authored
Merge pull request #555 from scala-js/topic/fixScaladoc
Fix ScalaDocs written as comments
2 parents bcafcc6 + 1e42a1d commit 9ce3258

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/main/scala/org/scalajs/dom/Fetch.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@ trait ResponseInit extends js.Object {
173173
@js.native
174174
trait Body extends js.Object {
175175

176-
/* Contains a Boolean that indicates whether the body has been read.
177-
*/
176+
/** Contains a Boolean that indicates whether the body has been read.
177+
*/
178178
def bodyUsed: Boolean = js.native
179179

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

184184
/** Takes a Response stream and reads it to completion. It returns a promise that resolves with a Blob.

src/main/scala/org/scalajs/dom/crypto/Crypto.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -868,9 +868,9 @@ object KeyFormat {
868868
@js.native
869869
trait RSAPublicKey extends js.Object {
870870

871-
/* modulus, as a base64 URL encoded String */
871+
/** modulus, as a base64 URL encoded String */
872872
def n: String = js.native
873873

874-
/* exponent, as a base64 URL encoded String */
874+
/** exponent, as a base64 URL encoded String */
875875
def e: String = js.native
876876
}

0 commit comments

Comments
 (0)