The quick-fix simplifies the condition.
Example:
fun use(arg: Boolean) { if (false == arg) { } }
After the quick-fix is applied:
fun use(arg: Boolean) { if (!arg) { } }