Skip to content

Commit 0ef4147

Browse files
Rewording the README
1 parent 61256da commit 0ef4147

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# r-tree [![Hackage](http://img.shields.io/hackage/v/r-tree.svg)](https://hackage.haskell.org/package/r-tree)
22

3-
A Haskell library for [R-](https://en.wikipedia.org/wiki/R-tree) and [R\*-trees](https://en.wikipedia.org/wiki/R\*-tree).
3+
A Haskell library for [R-trees](https://en.wikipedia.org/wiki/R-tree) and [R\*-trees](https://en.wikipedia.org/wiki/R\*-tree).
44

55
> [!NOTE]
66
>
77
> R-trees are self-balancing and as such can only be spine-strict.
88
99
Featuring:
1010

11-
- `Data.R2Tree.*`: two-dimensional R-tree.
11+
- `Data.R2Tree.*`: two-dimensional R-tree with the R\*-tree insertion algorithm.
1212

1313
`Double`-based implementation is considered the default one;
1414
a `Float`-based variant is provided for cases where reduced precision is preferred,
1515
for example rendering.
1616

17-
Three-dimensional R-trees are not currently available,
17+
Higher-dimensional R-trees are not currently provided,
1818
but should be trivial to add if needed.

r-tree.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cabal-version: 2.2
22

33
name: r-tree
44
version: 1.0.0.0
5-
synopsis: R-trees.
6-
description: R/R*-trees.
5+
synopsis: R-/R*-trees.
6+
description: R-trees and R*-trees.
77

88
See the <https://github.com/sebastian-philipp/r-tree/blob/master/README.md README>
99
for a brief overview of the data structures included in this package.

0 commit comments

Comments
 (0)