SketchUp / rubocop-sketchup

Rubocop cops for SketchUp - test against our Extension Warehouse technical requirements and other pitfalls
MIT License
14 stars 8 forks source link

Typo in SketchupRequirements/Exit #155

Open thomthom opened 2 years ago

thomthom commented 2 years ago

Currently it says:

E: SketchupRequirements/Exit: exit attempts to kill the Ruby interpreter. Use return, next, break or raise instead. SketchUp will trap exit and prevent that, with a message in the console. But exit! is not trapped and with terminate SketchUp without shutting down cleanly. Use return, next or break instead.

Correct to:

E: SketchupRequirements/Exit: exit attempts to kill the Ruby interpreter. Use return, next, break or raise instead. SketchUp will trap exit and prevent it from terminating with a message in the console. But exit! is not trapped and will terminate SketchUp without shutting down cleanly. Use return, next or break instead.