Skip to content

Commit

Permalink
Fix typo in 3.85.0 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Oct 11, 2024
1 parent 9c2e72e commit 4e4f27d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions rdoc/created.rid
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Fri, 11 Oct 2024 07:08:30 -0700
Fri, 11 Oct 2024 07:14:14 -0700
README.rdoc Wed, 18 Oct 2023 15:53:01 -0700
CHANGELOG Fri, 11 Oct 2024 07:02:10 -0700
doc/CHANGELOG.old Fri, 11 Mar 2022 10:33:07 -0800
Expand Down Expand Up @@ -267,5 +267,5 @@ doc/release_notes/3.81.0.txt Wed, 12 Jun 2024 08:35:42 -0700
doc/release_notes/3.82.0.txt Fri, 12 Jul 2024 07:56:42 -0700
doc/release_notes/3.83.0.txt Mon, 12 Aug 2024 08:39:07 -0700
doc/release_notes/3.84.0.txt Thu, 12 Sep 2024 09:02:03 -0700
doc/release_notes/3.85.0.txt Fri, 11 Oct 2024 07:02:10 -0700
doc/release_notes/3.85.0.txt Fri, 11 Oct 2024 07:13:49 -0700
doc/release_notes/3.9.0.txt Mon, 11 Jun 2018 12:33:07 -0700
9 changes: 5 additions & 4 deletions rdoc/files/doc/release_notes/3_85_0_txt.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h1 class='name'>3.85.0.txt
</div>
<div class='last-update'>
Last Update:
<span class='datetime'>2024-10-11 07:02:10 -0700</span>
<span class='datetime'>2024-10-11 07:13:49 -0700</span>
</div>
</div>
<div id='content'>
Expand Down Expand Up @@ -65,9 +65,10 @@ <h1 id="label-New+Features">New Features<span><a href="#label-New+Features">&par

<p>Symbol matchers can build upon class matchers (and vice-versa):</p>

<pre>symbol_matcher :ActiveEmployee, Employee |employee|
employee if employee.active?
end</pre>
<pre class="ruby"><span class="ruby-identifier">symbol_matcher</span> <span class="ruby-value">:ActiveEmployee</span>, <span class="ruby-constant">Employee</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">employee</span><span class="ruby-operator">|</span>
<span class="ruby-identifier">employee</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">employee</span>.<span class="ruby-identifier">active?</span>
<span class="ruby-keyword">end</span>
</pre>

<p>With the above :ActiveEmployee matcher, segments will only match if they are an integer that is related to an employee, and that employee is active.</p>
</li></ul>
Expand Down

0 comments on commit 4e4f27d

Please sign in to comment.