Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 4334ea6

Browse files
committed
Adjust module doc comments
1 parent e1e09f1 commit 4334ea6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Webapi.re

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
module Base64 = Webapi__Base64;
2+
3+
/** @since 0.18.0 */
24
module Blob = Webapi__Blob;
35
module Canvas = Webapi__Canvas;
46
module Dom = Webapi__Dom;
@@ -18,6 +20,8 @@ module FormData = Fetch.FormData;
1820
module Iterator = FormData.Iterator;
1921

2022
module Performance = Webapi__Performance;
23+
24+
/** @since 0.19.0 */
2125
module ReadableStream = Webapi__ReadableStream;
2226
module ResizeObserver = Webapi__ResizeObserver;
2327
module Url = Webapi__Url;

src/Webapi/Webapi__Blob.re

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[@text "@since 0.18.0"];
2-
31
module Impl = (T: {type t}) => {
42
[@bs.send] external arrayBuffer: T.t => Js.Promise.t(Js.Typed_array.ArrayBuffer.t) =
53
"";

src/Webapi/Webapi__ReadableStream.re

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[@text "@since 0.19.0"];
2-
31
module type Reader = {
42
type t;
53
type closed;

0 commit comments

Comments
 (0)