this repo has no description

Apply suggestions from code review

Co-authored-by: Raphaël Proust <raphael-proust@users.noreply.github.com>

Changed files
+1 -2
packages
cll
cll.0.1.0
+1 -2
packages/cll/cll.0.1.0/opam
···
opam-version: "2.0"
synopsis: "Mutable circular doubly linked list"
description: """
-
A mutable circular doubly linked list designed for O(1) insertion and removal, O(n) traversal, and close to O(1) search using a backing hashtable.
"""
maintainer: ["Rob Anderson <opensource@robanderson.dev>"]
···
doc: "https://robanderson.dev/ocaml-cll"
bug-reports: "https://github.com/jamsidedown/ocaml-cll/issues"
depends: [
-
"ocaml"
+
"ocaml" { >= "4.05" }
"dune" {>= "3.10"}
"ounit2" {with-test}
"bisect_ppx" {with-test}