From 2064af36c987798a999687c1c99dcaabc2aa279b Mon Sep 17 00:00:00 2001 From: Vincent Bernardoff Date: Thu, 6 Oct 2016 12:55:38 +0200 Subject: [PATCH] typo --- src/node/db/context.ml | 2 +- src/node/db/context.mli | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/node/db/context.ml b/src/node/db/context.ml index de16809f0..a18795f2c 100644 --- a/src/node/db/context.ml +++ b/src/node/db/context.ml @@ -7,7 +7,7 @@ (* *) (**************************************************************************) -(** Tezos - Versionned (key x value) store (over Irmin) *) +(** Tezos - Versioned (key x value) store (over Irmin) *) open Logging.Db diff --git a/src/node/db/context.mli b/src/node/db/context.mli index 3f1523ab3..db9997ba9 100644 --- a/src/node/db/context.mli +++ b/src/node/db/context.mli @@ -7,7 +7,7 @@ (* *) (**************************************************************************) -(** Tezos - Versionned, block indexed (key x value) store *) +(** Tezos - Versioned, block indexed (key x value) store *) (** A block-indexed (key x value) store directory. *) type index @@ -15,7 +15,7 @@ type index (** A (key x value) store for a given block. *) type store -(** Open or initialize a versionned store at a given path. *) +(** Open or initialize a versioned store at a given path. *) val init: ?patch_context:(store -> store Lwt.t) -> root:string ->