Alpha: typos

This commit is contained in:
bruno 2018-05-22 16:02:28 +02:00 committed by Grégoire Henry
parent 672d2c10a6
commit c13b7dd39a
3 changed files with 5 additions and 5 deletions

View File

@ -50,7 +50,7 @@ module Baker = struct
let rights_for_level =
RPC_service.post_service
~description:
"List delegate allowed to bake for a given level, \
"List delegates allowed to bake for a given level, \
ordered by priority."
~query: RPC_query.empty
~input: (obj1 (opt "max_priority" int31))

View File

@ -78,7 +78,7 @@ module Make (T: QTY) : S = struct
let one_mutez = 1L
let one_cent = Int64.mul one_mutez 10_000L
let fifty_cents = Int64.mul one_cent 50L
(* 1 tez = 100 cents = 10_000_000 mutez *)
(* 1 tez = 100 cents = 1_000_000 mutez *)
let one = Int64.mul one_cent 100L
let id = T.id

View File

@ -12,7 +12,7 @@
Basic roll manipulation.
If storage related to roll (a.k.a. `Storage.Roll`) are not used
outside this module, this interface enforce the invariant that a
outside of this module, this interface enforces the invariant that a
roll is always either in the limbo list or in a contract list.
*)