Skip to content

Commit

Permalink
Fix spelling of Additionally
Browse files Browse the repository at this point in the history
  • Loading branch information
eileencodes committed Nov 17, 2021
1 parent 5647a9c commit f22273a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ values = { zip: entered_zip_code, qty: entered_quantity }
Model.where("zip_code = :zip AND quantity >= :qty", values).first
```

Aditionally, you can split and chain conditionals valid for your use case:
Additionally, you can split and chain conditionals valid for your use case:

```ruby
Model.where(zip_code: entered_zip_code).where("quantity >= ?", entered_quantity).first
Expand Down

0 comments on commit f22273a

Please sign in to comment.