1
Fork 0

Format rustfmt's own indices

This commit is contained in:
Marcus Klaas 2015-10-02 11:48:52 +02:00
parent ad2e3b8e2b
commit 84718b5b90
5 changed files with 6 additions and 6 deletions

View file

@ -756,7 +756,7 @@ fn rewrite_match_arm_comment(context: &RewriteContext,
-> Option<String> {
// The leading "," is not part of the arm-comment
let missed_str = match missed_str.find_uncommented(",") {
Some(n) => &missed_str[n+1..],
Some(n) => &missed_str[n + 1..],
None => &missed_str[..],
};
@ -816,7 +816,7 @@ fn rewrite_match(context: &RewriteContext,
let missed_str = if i == 0 {
context.snippet(mk_sp(open_brace_pos, arm_start_pos(arm)))
} else {
context.snippet(mk_sp(arm_end_pos(&arms[i-1]), arm_start_pos(arm)))
context.snippet(mk_sp(arm_end_pos(&arms[i - 1]), arm_start_pos(arm)))
};
let comment = try_opt!(rewrite_match_arm_comment(context,
&missed_str,