Skip to content

Commit

Permalink
Fix markups and indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
k-tsj committed Dec 20, 2020
1 parent d37be18 commit 85ec6cc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions doc/syntax/pattern_matching.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ See below for more examples and explanations of the syntax.

Patterns can be:

* any Ruby object (matched by <code>===</code> operator, like in +when+); (_Value pattern_)
* array pattern: <code>[<subpattern>, <subpattern>, <subpattern>, ...]</code>; (_Array pattern_)
* find pattern: <code>[*variable, <subpattern>, <subpattern>, <subpattern>, ..., *variable]</code>; (_Find pattern_)
* hash pattern: <code>{key: <subpattern>, key: <subpattern>, ...}</code>; (_Hash pattern_)
* combination of patterns with <code>|</code>; (_Alternative pattern_)
* variable capture: <code>variable</code> or <code><pattern> => variable</code>; (_Variable pattern_, _As pattern_)
* any Ruby object (matched by <code>===</code> operator, like in +when+); (<em>Value pattern</em>)
* array pattern: <code>[<subpattern>, <subpattern>, <subpattern>, ...]</code>; (<em>Array pattern</em>)
* find pattern: <code>[*variable, <subpattern>, <subpattern>, <subpattern>, ..., *variable]</code>; (<em>Find pattern</em>)
* hash pattern: <code>{key: <subpattern>, key: <subpattern>, ...}</code>; (<em>Hash pattern</em>)
* combination of patterns with <code>|</code>; (<em>Alternative pattern</em>)
* variable capture: <code>variable</code> or <code><pattern> => variable</code>; (<em>Variable pattern</em>, <em>As pattern</em>)

Any pattern can be nested inside array/find/hash patterns where <code><subpattern></code> is specified.

Expand Down Expand Up @@ -443,8 +443,8 @@ Approximate syntax is:
| Constant[pattern, ..., *variable]

find_pattern: [*variable, pattern, ..., *variable]
| Constant(*variable, pattern, ..., *variable)
| Constant[*variable, pattern, ..., *variable]
| Constant(*variable, pattern, ..., *variable)
| Constant[*variable, pattern, ..., *variable]

hash_pattern: {key: pattern, key:, ..., **variable}
| Constant(key: pattern, key:, ..., **variable)
Expand Down

0 comments on commit 85ec6cc

Please sign in to comment.