I suggest to add paragraph about using method [.none()](https://api.rubyonrails.org/classes/ActiveRecord/QueryMethods.html#method-i-none). Let's say we have the following samples: ```ruby User.where(id: nil) User.where(id: 0) User.where(id: []) User.where(id: {}) User.limit(nil) User.limit(0) ``` All these lines can be replaced with the code: ```ruby User.none ```