File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
#![ deny( missing_docs) ]
2
- //! mmap-bitvec is a library for using file-backed (via mmap) bit vectors and
2
+ //! ` mmap-bitvec` is a library for using file-backed (via mmap) bit vectors and
3
3
//! includes common convenience functions and a few data structures built atop
4
4
//! the included bit vector implementation.
5
5
#[ doc = include_str ! ( "../README.md" ) ]
6
- /// The bitvec trait and some impl for built-in types
6
+ /// The ` bitvec` trait and some impl for built-in types
7
7
pub mod bitvec;
8
8
/// A simple implementation of a Bloom filter backed by `BitVec`
9
9
pub mod bloom;
10
- /// All the utilities to interact with a mmapped bitvector
10
+ /// All the utilities to interact with a mmap'd bitvector
11
11
pub mod mmap_bitvec;
12
12
13
13
#[ doc( inline) ]
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ pub struct MmapBitVec {
76
76
pub size : usize ,
77
77
/// Arbitrary data prepended to file (when file-backed)
78
78
header : Box < [ u8 ] > ,
79
- /// controls whether the mapping is backed by a file (see `MAP_ANONYMOUS` here: https://man7.org/linux/man-pages/man2/mmap.2.html)
79
+ /// controls whether the mapping is backed by a file (see `MAP_ANONYMOUS` here: < https://man7.org/linux/man-pages/man2/mmap.2.html> )
80
80
is_map_anonymous : bool ,
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments