Use consistent coding style
This commit is contained in:
parent
b85e983ce7
commit
64eedd413f
1 changed files with 6 additions and 6 deletions
|
@ -58,7 +58,7 @@ impl Subquery {
|
||||||
// Add parent document
|
// Add parent document
|
||||||
if doc.is_some() {
|
if doc.is_some() {
|
||||||
let doc = doc.unwrap().clone();
|
let doc = doc.unwrap().clone();
|
||||||
ctx.add_value(String::from("parent"), doc);
|
ctx.add_value("parent".into(), doc);
|
||||||
}
|
}
|
||||||
// Prepare context
|
// Prepare context
|
||||||
let ctx = ctx.freeze();
|
let ctx = ctx.freeze();
|
||||||
|
@ -84,7 +84,7 @@ impl Subquery {
|
||||||
// Add parent document
|
// Add parent document
|
||||||
if doc.is_some() {
|
if doc.is_some() {
|
||||||
let doc = doc.unwrap().clone();
|
let doc = doc.unwrap().clone();
|
||||||
ctx.add_value(String::from("parent"), doc);
|
ctx.add_value("parent".into(), doc);
|
||||||
}
|
}
|
||||||
// Prepare context
|
// Prepare context
|
||||||
let ctx = ctx.freeze();
|
let ctx = ctx.freeze();
|
||||||
|
@ -105,7 +105,7 @@ impl Subquery {
|
||||||
// Add parent document
|
// Add parent document
|
||||||
if doc.is_some() {
|
if doc.is_some() {
|
||||||
let doc = doc.unwrap().clone();
|
let doc = doc.unwrap().clone();
|
||||||
ctx.add_value(String::from("parent"), doc);
|
ctx.add_value("parent".into(), doc);
|
||||||
}
|
}
|
||||||
// Prepare context
|
// Prepare context
|
||||||
let ctx = ctx.freeze();
|
let ctx = ctx.freeze();
|
||||||
|
@ -126,7 +126,7 @@ impl Subquery {
|
||||||
// Add parent document
|
// Add parent document
|
||||||
if doc.is_some() {
|
if doc.is_some() {
|
||||||
let doc = doc.unwrap().clone();
|
let doc = doc.unwrap().clone();
|
||||||
ctx.add_value(String::from("parent"), doc);
|
ctx.add_value("parent".into(), doc);
|
||||||
}
|
}
|
||||||
// Prepare context
|
// Prepare context
|
||||||
let ctx = ctx.freeze();
|
let ctx = ctx.freeze();
|
||||||
|
@ -147,7 +147,7 @@ impl Subquery {
|
||||||
// Add parent document
|
// Add parent document
|
||||||
if doc.is_some() {
|
if doc.is_some() {
|
||||||
let doc = doc.unwrap().clone();
|
let doc = doc.unwrap().clone();
|
||||||
ctx.add_value(String::from("parent"), doc);
|
ctx.add_value("parent".into(), doc);
|
||||||
}
|
}
|
||||||
// Prepare context
|
// Prepare context
|
||||||
let ctx = ctx.freeze();
|
let ctx = ctx.freeze();
|
||||||
|
@ -168,7 +168,7 @@ impl Subquery {
|
||||||
// Add parent document
|
// Add parent document
|
||||||
if doc.is_some() {
|
if doc.is_some() {
|
||||||
let doc = doc.unwrap().clone();
|
let doc = doc.unwrap().clone();
|
||||||
ctx.add_value(String::from("parent"), doc);
|
ctx.add_value("parent".into(), doc);
|
||||||
}
|
}
|
||||||
// Prepare context
|
// Prepare context
|
||||||
let ctx = ctx.freeze();
|
let ctx = ctx.freeze();
|
||||||
|
|
Loading…
Reference in a new issue