This commit is contained in:
Guanqun Lu 2017-05-27 15:35:18 -05:00 committed by Nikolay Volf
parent 1f0f27bc65
commit a246278727
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ use std::collections::hash_map::Entry;
/// Reference-counted memory-based `HashDB` implementation.
///
/// Use `new()` to create a new database. Insert items with `insert()`, remove items
/// with `remove()`, check for existence with `containce()` and lookup a hash to derive
/// with `remove()`, check for existence with `contains()` and lookup a hash to derive
/// the data with `get()`. Clear with `clear()` and purge the portions of the data
/// that have no references with `purge()`.
///