Run cargo fix.
Some checks failed
clippy Build clippy has failed
rust-foreign-document-test Build rust-foreign-document-test has succeeded
rust-build Build rust-build has succeeded
rust-test Build rust-test has succeeded

This commit is contained in:
Tom Alexander
2023-12-30 22:22:32 -05:00
parent 44483b4d54
commit 6b62176fd0
6 changed files with 67 additions and 67 deletions

View File

@@ -376,7 +376,7 @@ fn wasm_key_to_emacs_key<WK: std::fmt::Display>(wasm_key: WK) -> String {
}
fn compare_quoted_string<'e, 's, 'w>(
source: &'s str,
_source: &'s str,
emacs: &'e str,
wasm: &'w String,
) -> Result<WasmDiffResult<'s>, Box<dyn std::error::Error>> {
@@ -658,7 +658,7 @@ fn compare_object_tree<'e, 's, 'w>(
}
fn compare_number_lines<'e, 's, 'w>(
source: &'s str,
_source: &'s str,
emacs: &'e Vec<Token<'s>>,
wasm: &'w serde_json::Map<String, serde_json::Value>,
) -> Result<WasmDiffResult<'s>, Box<dyn std::error::Error>> {
@@ -745,7 +745,7 @@ fn compare_number_lines<'e, 's, 'w>(
}
fn compare_string_set<'e, 's, 'w>(
source: &'s str,
_source: &'s str,
emacs: &'e Vec<Token<'s>>,
wasm: &'w serde_json::Map<String, serde_json::Value>,
) -> Result<WasmDiffResult<'s>, Box<dyn std::error::Error>> {