It means you can get these events even if you used the `-e` option and didn't specify them. For instance, if you use
inotifywait -e modify filename
and the file is deleted, you'll get a `delete_self` event, even though you only asked for `modify` events.
This means you need to check the event type in the output, even if you only requested a specific event.