More check-typo fixes

master
John Whitington 2020-07-08 15:09:10 +01:00
parent 0f2954b263
commit e870b8a9a9
4 changed files with 10 additions and 8 deletions

View File

@ -22,7 +22,7 @@
*)
(** Byte sequence operations.
A byte sequence is a mutable data structure that contains a
fixed-length sequence of bytes. Each byte can be indexed in
constant time for reading or writing.

View File

@ -22,7 +22,7 @@
*)
(** Byte sequence operations.
A byte sequence is a mutable data structure that contains a
fixed-length sequence of bytes. Each byte can be indexed in
constant time for reading or writing.

View File

@ -250,5 +250,3 @@ let to_seq s = bos s |> B.to_seq
let to_seqi s = bos s |> B.to_seqi
let of_seq g = B.of_seq g |> bts

View File

@ -18,7 +18,11 @@
#an alphabetic character or ( or '. This should avoid altering the contents of
#comments.
perl -p -e "s/ [a-z_]+:([a-z\('])/ \1/g" ../stdlib/listLabels.mli > ../stdlib/list.mli
perl -p -e "s/ [a-z_]+:([a-z\('])/ \1/g" ../stdlib/arrayLabels.mli > ../stdlib/array.mli
perl -p -e "s/ [a-z_]+:([a-z\('])/ \1/g" ../stdlib/stringLabels.mli > ../stdlib/string.mli
perl -p -e "s/ [a-z_]+:([a-z\('])/ \1/g" ../stdlib/bytesLabels.mli > ../stdlib/bytes.mli
perl -p -e "s/ [a-z_]+:([a-z\('])/ \1/g" \
../stdlib/listLabels.mli > ../stdlib/list.mli
perl -p -e "s/ [a-z_]+:([a-z\('])/ \1/g" \
../stdlib/arrayLabels.mli > ../stdlib/array.mli
perl -p -e "s/ [a-z_]+:([a-z\('])/ \1/g" \
../stdlib/stringLabels.mli > ../stdlib/string.mli
perl -p -e "s/ [a-z_]+:([a-z\('])/ \1/g" \
../stdlib/bytesLabels.mli > ../stdlib/bytes.mli