summaryrefslogtreecommitdiff
path: root/src/syntax
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax')
-rw-r--r--src/syntax/expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/expr.rs b/src/syntax/expr.rs
index 268e6209..834c4393 100644
--- a/src/syntax/expr.rs
+++ b/src/syntax/expr.rs
@@ -109,7 +109,7 @@ pub fn pretty_bracket_call(call: &ExprCall, p: &mut Printer, chained: bool) {
// Function name.
p.push_str(&call.name.v);
- // Find out whether this can be written as body or chain.
+ // Find out whether this can be written with a body or as a chain.
//
// Example: Transforms "[v {Hi}]" => "[v][Hi]".
if let [head @ .., Argument::Pos(Spanned { v: Expr::Content(content), .. })] =