From 663416b35059b1927526e485e44eadc1a7ef187b Mon Sep 17 00:00:00 2001 From: Fardale Date: Mon, 25 Jan 2021 18:03:54 +0100 Subject: [PATCH] fix: change container.data to container-data in README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fb38fa59..4cdfce43 100644 --- a/README.md +++ b/README.md @@ -590,19 +590,19 @@ where `type walk_item = [ ``Dir | ``File ] * string` is a path paired with a flag distinguishing files from directories. -### To go further: `containers.data` +### To go further: `containers-data` -There is also a sub-library called `containers.data`, with lots of +There is also a library called `containers-data`, with lots of more specialized data-structures. The documentation contains the API for all the modules; they also provide interface to `iter` and, as the rest of containers, minimize -dependencies over other modules. To use `containers.data` you need to link it, -either in your build system or by `#require containers.data;;` +dependencies over other modules. To use `containers-data` you need to link it, +either in your build system or by `#require containers-data;;` A quick example based on purely functional double-ended queues: ```ocaml -# #require "containers.data";; +# #require "containers-data";; # #install_printer CCFQueue.pp;; (* better printing of queues! *) # let q = CCFQueue.of_list [2;3;4] ;;