File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
src/main/scala/org/scalajs/dom Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -173,12 +173,12 @@ trait ResponseInit extends js.Object {
173173@ js.native
174174trait 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.
Original file line number Diff line number Diff line change @@ -868,9 +868,9 @@ object KeyFormat {
868868@ js.native
869869trait 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}
You can’t perform that action at this time.
0 commit comments