Fix typo in README.

v0.7.x
whitequark 2018-05-04 20:12:45 +00:00
parent d9c4f784d4
commit db40149779
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ pub enum ManagedSlice<'a, T: 'a> {
// The implementation of ManagedMap is not yet stable, beware!
pub enum ManagedMap<'a, K: Hash + 'a, V: 'a> {
Borrowed(&'a mut [(K, V)]),
Borrowed(&'a mut [Option<(K, V)>]),
#[cfg(/* BTreeMap available */)]
Owned(BTreeMap<K, V>)
}