aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEric Boren <erock2112@users.noreply.github.com>2016-03-22 13:10:49 -0400
committerEric Boren <erock2112@users.noreply.github.com>2016-03-22 13:10:49 -0400
commit40cff7a0e52795527369c4239276d820e1aea0eb (patch)
tree1638864560d87e88f2ebbc21e17456d6c2703e2b /README.md
parentMerge pull request #532 from asdine/project-list (diff)
downloaddedo-40cff7a0e52795527369c4239276d820e1aea0eb.tar.gz
dedo-40cff7a0e52795527369c4239276d820e1aea0eb.tar.xz
Add note about Go RFC3339Nano sortability to README
RFC3339 is sortable, but RFC3339Nano is not, because it does not use a fixed number of digits after the decimal.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index aeddc16..0cf67a6 100644
--- a/README.md
+++ b/README.md
@@ -427,6 +427,8 @@ db.View(func(tx *bolt.Tx) error {
})
```
+Note that, while RFC3339 is sortable, the Golang implementation of RFC3339Nano does not use a fixed number of digits after the decimal point and is therefore not sortable.
+
#### ForEach()