Skip to content

Commit

Permalink
Remove too many closing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
usutani committed Feb 19, 2023
1 parent 6cfa194 commit c01b0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guides/source/active_record_querying.md
Expand Up @@ -733,7 +733,7 @@ SELECT * FROM customers WHERE (customers.last_name = 'Smith' OR customers.orders
`AND` conditions can be built by chaining `where` conditions.

```ruby
Customer.where(last_name: 'Smith').where(orders_count: [1,3,5]))
Customer.where(last_name: 'Smith').where(orders_count: [1,3,5])
```

```sql
Expand Down

0 comments on commit c01b0b2

Please sign in to comment.