Compiler warnings

This commit is contained in:
Sytse Reitsma 2019-04-17 20:49:09 +02:00
parent bdaa731197
commit 261207064e
3 changed files with 5 additions and 3 deletions

2
Cargo.lock generated
View File

@ -1,3 +1,5 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "aho-corasick"
version = "0.6.8"

View File

@ -61,7 +61,7 @@ pub fn id_from_content(content: &str) -> String {
}
// Remove spaces and hashes indicating a header
let trimmed = content.trim().trim_left_matches('#').trim();
let trimmed = content.trim().trim_start_matches('#').trim();
normalize_id(trimmed)
}

View File

@ -423,8 +423,8 @@ mod search {
fn read_book_index(root: &Path) -> serde_json::Value {
let index = root.join("book/searchindex.js");
let index = file_to_string(index).unwrap();
let index = index.trim_left_matches("window.search = ");
let index = index.trim_right_matches(";");
let index = index.trim_start_matches("window.search = ");
let index = index.trim_end_matches(";");
serde_json::from_str(&index).unwrap()
}