summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortummychow <tummychow@users.noreply.github.com>2018-03-11 16:44:52 -0700
committertummychow <tummychow@users.noreply.github.com>2018-03-11 16:44:52 -0700
commit1253f2029a1642f2767f40e098582c0994152743 (patch)
tree9c343153e356be952d73aac7cfcc61681cdc23cf
parent530fbf2464356469e678551c5033685faa8d280a (diff)
remove trailing whitespace
i don't know how this bit of whitespace managed to sneak by both rustfmt (it seems to struggle with deep combinator chains) and ws-butler (which might have missed the whitespace if it was actually inserted by rustfmt) but it offends my eyes and must destroyed
-rw-r--r--src/commute.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commute.rs b/src/commute.rs
index 455e1a5..39deebf 100644
--- a/src/commute.rs
+++ b/src/commute.rs
@@ -81,7 +81,7 @@ where
// to be reverse line order (bottom to top), which also
// happens to be reverse of the order they're stored
.rev()
- .fold(Some(after.clone()), |after, next|
+ .fold(Some(after.clone()), |after, next|
after
.and_then(|after| commute(next, &after))
.map(|(commuted_after, _)| commuted_after)