Skip to content

Commit 47fde44

Browse files
committed
Fixed package names
1 parent e299e1c commit 47fde44

File tree

22 files changed

+42
-42
lines changed

22 files changed

+42
-42
lines changed

base/async/examples/rpc/rpc_intf.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let set_id_counter = Rpc.Rpc.create
1616
~bin_response:Unit.bin_t
1717

1818

19-
(* This type is here only for the purpose of getting the ability to bin-prot an int
19+
(* This type is here only for the purpose of getting the ability to bin_prot an int
2020
pair. *)
2121
module Int_pair = struct
2222
type t = int * int with bin_io

base/compare/oasis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ Library pa_compare
3535
FindlibName: syntax
3636
BuildDepends: camlp4.lib,
3737
camlp4.quotations,
38-
type-conv (>= 2.0.1)
38+
type_conv (>= 3.0.5)
3939
CompiledObject: byte
4040
XMETAType: syntax
41-
XMETARequires: camlp4,type-conv,comparelib
41+
XMETARequires: camlp4,type_conv,comparelib
4242
XMETADescription: Syntax extension for "with compare"
4343
EOF
4444

base/core/extended/lib/extended_linux.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type-conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
1+
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type_conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
22

33
open Core.Std
44
open Unix

base/core/extended/lib/extended_linux.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type-conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
1+
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type_conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
22
open Core.Std
33
open Unix
44

base/core/extended/lib/fold_map.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type-conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
1+
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type_conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
22

33
open Core.Std
44
module Map_intf = Core.Core_map_intf

base/core/extended/lib/malloc.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type-conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
1+
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type_conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
22
open Sexplib.Std
33
open Bin_prot.Std
44

base/core/lib/unpack_buffer.mli

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ module Unpack_one : sig
3030

3131
val map : ('a, 'partial_unpack) t -> f:('a -> 'b) -> ('b, 'partial_unpack) t
3232

33-
(** [create_bin_prot reader] returns an unpacker that reads the "size-prefixed" bin-prot
34-
encoding, in which a value is encoded by first writing the length of the bin-prot
33+
(** [create_bin_prot reader] returns an unpacker that reads the "size-prefixed" bin_prot
34+
encoding, in which a value is encoded by first writing the length of the bin_prot
3535
data as a 64-bit int, and then writing the data itself. This encoding makes it
3636
trivial to know if enough data is available in the buffer, so there is no need to
3737
represent partially unpacked values, and hence ['partial_unpack = unit]. *)
@@ -50,8 +50,8 @@ val create
5050
-> ('value, 'partial_unpack) t
5151

5252
(** [create_bin_prot reader] returns an unpack buffer that unpacks the "size-prefixed"
53-
bin-prot encoding, in which a value is encoded by first writing the length of the
54-
bin-prot data as a 64-bit int, and then writing the bin-prot data itself. This
53+
bin_prot encoding, in which a value is encoded by first writing the length of the
54+
bin_prot data as a 64-bit int, and then writing the bin_prot data itself. This
5555
encoding makes it trivial to know if enough data is available in the buffer, so there
5656
is no need to represent partially unpacked values, and hence ['partial_unpack =
5757
unit]. *)

base/core/lib_test/hashtbl/table_new.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type-conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
1+
(*pp camlp4o -I `ocamlfind query sexplib` -I `ocamlfind query type_conv` -I `ocamlfind query bin_prot` pa_type_conv.cmo pa_sexp_conv.cmo pa_bin_prot.cmo *)
22

33
open Core.Std
44

base/fieldslib/oasis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ Library pa_fields_conv
3636
FindlibName: syntax
3737
BuildDepends: camlp4.lib,
3838
camlp4.quotations,
39-
type-conv (>= 2.0.1)
39+
type_conv (>= 3.0.5)
4040
CompiledObject: byte
4141
XMETAType: syntax
42-
XMETARequires: camlp4,type-conv,fieldslib
42+
XMETARequires: camlp4,type_conv,fieldslib
4343
XMETADescription: Syntax extension for Fieldslib
4444
4545
Document "fieldslib"

base/pa_ounit/oasis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ Library pa_ounit
2828
FindlibName: pa_ounit
2929
BuildDepends: camlp4.lib,
3030
camlp4.quotations,
31-
type-conv (>= 2.0.1)
31+
type_conv (>= 3.0.5)
3232
CompiledObject: byte
3333
XMETAType: syntax
34-
XMETARequires: camlp4,type-conv,oUnit
34+
XMETARequires: camlp4,type_conv,oUnit
3535
XMETADescription: Syntax extension writing inline tests
3636
EOF
3737

0 commit comments

Comments
 (0)