Update src/debug.rs

This commit is contained in:
Niko Matsakis 2019-07-03 06:28:09 -04:00 committed by GitHub
parent ac93c950be
commit e190a291f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ pub trait DebugQueryTable {
pub struct TableEntry<K, V> { pub struct TableEntry<K, V> {
/// key of the query /// key of the query
pub key: K, pub key: K,
/// value of the query, if it =is stored /// value of the query, if it is stored
pub value: Option<V>, pub value: Option<V>,
_for_future_use: (), _for_future_use: (),
} }