This commit is contained in:
Aleksey Kladov 2020-08-12 13:56:58 +02:00
parent f6c0b1ce59
commit c9a42c7c46

View file

@ -4,7 +4,7 @@ use crate::{utils::invert_boolean_expression, AssistContext, AssistId, AssistKin
// Assist: apply_demorgan // Assist: apply_demorgan
// //
// Apply [De Morgan's law](https://en.wikipedia.org/wiki/De_Morgan%27s_laws). // Apply https://en.wikipedia.org/wiki/De_Morgan%27s_laws[De Morgan's law].
// This transforms expressions of the form `!l || !r` into `!(l && r)`. // This transforms expressions of the form `!l || !r` into `!(l && r)`.
// This also works with `&&`. This assist can only be applied with the cursor // This also works with `&&`. This assist can only be applied with the cursor
// on either `||` or `&&`, with both operands being a negation of some kind. // on either `||` or `&&`, with both operands being a negation of some kind.