diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-06-30 09:45:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 09:45:16 +0100 |
commit | e87cba85efe966f51e9ba68401187731319ba7c7 (patch) | |
tree | 65699e6f3a876d3aa4ac62576d76e8f518a21d62 /crates/ra_ssr/src/matching.rs | |
parent | d13ded6cbc8b835807f08606db90bedf18643154 (diff) | |
parent | ef49bbeec430586b847a0ef84264b7afaf36112a (diff) |
Merge #5132
5132: Fix some typos r=matklad a=davidlattimore
Co-authored-by: David Lattimore <dml@google.com>
Diffstat (limited to 'crates/ra_ssr/src/matching.rs')
-rw-r--r-- | crates/ra_ssr/src/matching.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ssr/src/matching.rs b/crates/ra_ssr/src/matching.rs index bb87bda43..54413a151 100644 --- a/crates/ra_ssr/src/matching.rs +++ b/crates/ra_ssr/src/matching.rs | |||
@@ -225,7 +225,7 @@ impl<'db, 'sema> MatchState<'db, 'sema> { | |||
225 | match self.next_non_trivial(&mut code_it) { | 225 | match self.next_non_trivial(&mut code_it) { |
226 | None => { | 226 | None => { |
227 | if let Some(p) = pattern_it.next() { | 227 | if let Some(p) = pattern_it.next() { |
228 | fail_match!("Part of the pattern was unmached: {:?}", p); | 228 | fail_match!("Part of the pattern was unmatched: {:?}", p); |
229 | } | 229 | } |
230 | return Ok(()); | 230 | return Ok(()); |
231 | } | 231 | } |