Fix spelling of Additionally

This commit is contained in:
eileencodes 2021-11-17 11:32:54 -05:00
parent 5647a9c1ce
commit f22273a6bb
No known key found for this signature in database
GPG Key ID: BA5C575120BBE8DF

@ -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