At https://github.com/rubocop/ruby-style-guide#suppressing-exceptions, it says "Don't suppress" exceptions, but then lists `do_something rescue nil` as a good example. ``` # good do_something rescue nil ``` It could be my ignorance, but that reads like an example of suppressing an exception. Am I misunderstanding? Apologies if so.