summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorUman Shahzad <uman@opencraft.com>2019-01-03 17:47:19 +0500
committerUman Shahzad <uman@opencraft.com>2019-01-03 19:12:45 +0500
commitcc47dacd18723665f00ad43f71fd28b991d21044 (patch)
tree19b44a44cf98c5162c3f89a38a4c20638849a0cc /README.md
parente504583b7806d946da9c3627784d551a742be4d0 (diff)
downloadredis-cc47dacd18723665f00ad43f71fd28b991d21044.tar.gz
Remove documentation about geohash-int in deps repo.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4b1a98326..2b4eeb19b 100644
--- a/README.md
+++ b/README.md
@@ -216,7 +216,7 @@ Inside the root are the following important directories:
* `src`: contains the Redis implementation, written in C.
* `tests`: contains the unit tests, implemented in Tcl.
-* `deps`: contains libraries Redis uses. Everything needed to compile Redis is inside this directory; your system just needs to provide `libc`, a POSIX compatible interface and a C compiler. Notably `deps` contains a copy of `jemalloc`, which is the default allocator of Redis under Linux. Note that under `deps` there are also things which started with the Redis project, but for which the main repository is not `antirez/redis`. An exception to this rule is `deps/geohash-int` which is the low level geocoding library used by Redis: it originated from a different project, but at this point it diverged so much that it is developed as a separated entity directly inside the Redis repository.
+* `deps`: contains libraries Redis uses. Everything needed to compile Redis is inside this directory; your system just needs to provide `libc`, a POSIX compatible interface and a C compiler. Notably `deps` contains a copy of `jemalloc`, which is the default allocator of Redis under Linux. Note that under `deps` there are also things which started with the Redis project, but for which the main repository is not `antirez/redis`.
There are a few more directories but they are not very important for our goals
here. We'll focus mostly on `src`, where the Redis implementation is contained,