lib/utils: fix typo in example of mkAssertions

This commit is contained in:
Gaetan Lepage 2025-01-29 15:05:38 +01:00
parent eeafe2a715
commit abba4af10b

View file

@ -181,7 +181,7 @@ rec {
# Example
```nix
warnings = mkAssertions "plugins.foo" {
assertions = mkAssertions "plugins.foo" {
assertion = plugins.foo.settings.barIntegration && (!plugins.bar.enable);
message = "`barIntegration` is enabled but the `bar` plugin is not."
}