astreams: Improve variable naming consistency

This commit is contained in:
Steffo 2024-12-28 02:33:18 +01:00
parent f26c7a04f4
commit ffe5c3cc03
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -25,7 +25,7 @@ impl StreamsJsonLD for &json_ld::Node {
let r#str = match value.as_str() {
None => return Some(Err(anyhow!("Couldn't process property as JSON-LD string"))),
Some(string) => string
Some(r#str) => r#str
};
let string = r#str.to_string();