astreams
: Improve variable naming consistency
This commit is contained in:
parent
f26c7a04f4
commit
ffe5c3cc03
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ impl StreamsJsonLD for &json_ld::Node {
|
||||||
|
|
||||||
let r#str = match value.as_str() {
|
let r#str = match value.as_str() {
|
||||||
None => return Some(Err(anyhow!("Couldn't process property as JSON-LD string"))),
|
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();
|
let string = r#str.to_string();
|
||||||
|
|
Loading…
Reference in a new issue