File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- MDBOOK_VERSION = 0.4.8
1
+ MDBOOK_VERSION = 0.4.18
2
2
MDBOOK_LINKCHECK_VERSION = 0.7.4
3
3
MDBOOK_TOC_VERSION = 0.6.3
4
4
Original file line number Diff line number Diff line change 42
42
43
43
- [ Documentation] ( ./documentation/summary.md )
44
44
- [ doc alias policy] ( ./documentation/doc-alias-policy.md )
45
+ - [ safety comments policy] ( ./documentation/safety-comments.md )
45
46
46
47
---
47
48
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ lint for `# Safety` sections by the way.
17
17
18
18
[ See the example on github] [ as_bytes_mut ]
19
19
20
- ``` rust
20
+ ``` rust,ignore
21
21
/// Converts a mutable string slice to a mutable byte slice.
22
22
///
23
23
/// # Safety
@@ -64,7 +64,7 @@ not check for `0` before dividing.
64
64
65
65
[ See the example on github] [ split_at ]
66
66
67
- ``` rust
67
+ ``` rust,ignore
68
68
pub fn split_at(&self, mid: usize) -> (&str, &str) {
69
69
// is_char_boundary checks that the index is in [0, .len()]
70
70
if self.is_char_boundary(mid) {
You can’t perform that action at this time.
0 commit comments