Fix a typo in documentation.

This commit is contained in:
whitequark 2017-04-21 15:59:55 +00:00
parent 555825e49e
commit 8087bf3755
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ pub trait Cache {
/// On systems without heap, use:
/// ```rust
/// use smoltcp::iface::SliceArpCache;
/// let mut arp_cache_storage = [Default::default(); 8]
/// let mut arp_cache_storage = [Default::default(); 8];
/// let mut arp_cache = SliceArpCache::new(&mut arp_cache_storage[..]);
/// ```
pub struct SliceCache<'a> {