Fix deprecation warnings for trim left/right matches

This commit is contained in:
Carol (Nichols || Goulding) 2019-03-23 08:47:10 -04:00
parent c068703028
commit 4abac12c04
No known key found for this signature in database
GPG Key ID: D04B39A6CA243902
2 changed files with 3 additions and 3 deletions

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()
}