diff options
| author | Nick Cameron <nrc@ncameron.org> | 2017-10-04 20:14:10 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-04 20:14:10 +0800 |
| commit | 2aa2d4ebe3aa02999558b8aa1c75cf1a0855cb34 (patch) | |
| tree | 4822804d7604bdaeec95c29dba5cedc4b63e8d68 /src/patterns.rs | |
| parent | 687acdf84ed90493b9fe4f54bb315b74a5889713 (diff) | |
| parent | 436a083fceae8e0f71605aa07dce047a316576c6 (diff) | |
Merge pull request #2011 from topecongiro/rewrite_call_inner
Change return type of rewrite_call_inner() to Option<String>
Diffstat (limited to 'src/patterns.rs')
| -rw-r--r-- | src/patterns.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/patterns.rs b/src/patterns.rs index b05889c29e9..6d289736c51 100644 --- a/src/patterns.rs +++ b/src/patterns.rs @@ -346,7 +346,7 @@ fn rewrite_tuple_pat( shape, shape.width, add_comma, - ).ok() + ) } fn count_wildcard_suffix_len( |
