diff options
author | Eric Boren <erock2112@users.noreply.github.com> | 2016-03-22 13:10:49 -0400 |
---|---|---|
committer | Eric Boren <erock2112@users.noreply.github.com> | 2016-03-22 13:10:49 -0400 |
commit | 40cff7a0e52795527369c4239276d820e1aea0eb (patch) | |
tree | 1638864560d87e88f2ebbc21e17456d6c2703e2b /README.md | |
parent | Merge pull request #532 from asdine/project-list (diff) | |
download | dedo-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.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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() |