Changes for 1.0.2.

Thanks to jeremysalwen on Github.
This commit is contained in:
2017-05-06 22:27:10 -04:00
parent 703ebb203f
commit b81e070cfc
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "symbol-map"
version = "1.0.1"
version = "1.0.2"
authors = ["Stu Black <trurl@freeshell.org>"]
description = "Memory-efficient mapping from values to integer identifiers (AKA a lexicon or symbol table), with options for fast bidirectional lookup"

View File

@@ -30,7 +30,7 @@ Or you could use `symbol_table::HashIndexing<Data=T, SymbolId=usize>` and get a
type that is `Send` and `Sync` when `T` is and owns only one `T` per association
in the table.
See the [rustdoc](http://dstu.github.io/symbol-map/index.html) for example usage
See the [rustdoc](https://docs.rs/symbol-map/1.0.2/symbol_map/) for example usage
and further technical details.
# Copyright