Skip to content

Commit

Permalink
Merge pull request #31 from jtruman88/jaron-truman-fix-typo-in-target…
Browse files Browse the repository at this point in the history
…-practice

Fix Typo in Target Practice
  • Loading branch information
brettchalupa authored Feb 29, 2024
2 parents b4db63f + bcff15e commit 76dbefe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/04-target-practice.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ We'll go about this in the following way:
- If a target should be removed, then we'll mark it as `dead`
- After we've checked all of our targets, we'll `reject!` the dead ones from `args.state.targets`

Ruby makes that pretty easy. All you do is call the `#reject!` method on an array and pass in the logic for when an item should be removed. If you have an array of numbers and call reject on all of the numbers, only the odd ones will remain in the array:
Ruby makes that pretty easy. All you do is call the `#reject!` method on an array and pass in the logic for when an item should be removed. If you have an array of numbers and call reject on all of the even numbers, only the odd ones will remain in the array:

``` ruby
nums = [3, 4, 5]
Expand Down

0 comments on commit 76dbefe

Please sign in to comment.