summaryrefslogtreecommitdiff
path: root/stdlib/buffer.mli
diff options
context:
space:
mode:
authorDavid Allsopp <david.allsopp@metastack.com>2022-10-31 09:48:32 +0000
committerDavid Allsopp <david.allsopp@metastack.com>2022-10-31 09:48:32 +0000
commit8e12c01e459872592e2959dc70da9e9e25695ca6 (patch)
tree0f71593c83d900d9b5d51361717face6b443ff99 /stdlib/buffer.mli
parentcc3d9cb9bbe594b89e0339c6ef8b1da74a537972 (diff)
downloadocaml-8e12c01e459872592e2959dc70da9e9e25695ca6.tar.gz
Remove .0 from all @since, @before and @after
Diffstat (limited to 'stdlib/buffer.mli')
-rw-r--r--stdlib/buffer.mli8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/buffer.mli b/stdlib/buffer.mli
index 7a0160933d..e003fe3564 100644
--- a/stdlib/buffer.mli
+++ b/stdlib/buffer.mli
@@ -98,7 +98,7 @@ val truncate : t -> int -> unit
(** [truncate b len] truncates the length of [b] to [len]
Note: the internal byte sequence is not shortened.
@raise Invalid_argument if [len < 0] or [len > length b].
- @since 4.05.0 *)
+ @since 4.05 *)
(** {1 Appending} *)
@@ -113,21 +113,21 @@ val add_utf_8_uchar : t -> Uchar.t -> unit
(** [add_utf_8_uchar b u] appends the {{:https://tools.ietf.org/html/rfc3629}
UTF-8} encoding of [u] at the end of buffer [b].
- @since 4.06.0 *)
+ @since 4.06 *)
val add_utf_16le_uchar : t -> Uchar.t -> unit
(** [add_utf_16le_uchar b u] appends the
{{:https://tools.ietf.org/html/rfc2781}UTF-16LE} encoding of [u]
at the end of buffer [b].
- @since 4.06.0 *)
+ @since 4.06 *)
val add_utf_16be_uchar : t -> Uchar.t -> unit
(** [add_utf_16be_uchar b u] appends the
{{:https://tools.ietf.org/html/rfc2781}UTF-16BE} encoding of [u]
at the end of buffer [b].
- @since 4.06.0 *)
+ @since 4.06 *)
val add_string : t -> string -> unit
(** [add_string b s] appends the string [s] at the end of buffer [b]. *)