From fb0dd983a5ff48910e4d89b5882d45b27f4e6bcb Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Fri, 6 Aug 2021 08:40:15 +0000 Subject: [PATCH] Small rephrasings Co-authored-by: Linus Heckemann --- rfcs/0075-declarative-wrappers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rfcs/0075-declarative-wrappers.md b/rfcs/0075-declarative-wrappers.md index ea7c086..49429ae 100644 --- a/rfcs/0075-declarative-wrappers.md +++ b/rfcs/0075-declarative-wrappers.md @@ -328,7 +328,7 @@ so: ``` `wrapQtAppsHook` and `wrapGAppsHook` should be replaced with `makeWrapperAuto` -while enable derivations to get rid of well known workarounds such as: +which enables removing frequent workarounds such as: ```nix # hook for gobject-introspection doesn't like strictDeps @@ -347,7 +347,7 @@ And often seen in Python + Qt programs: # Drawbacks [drawbacks]: #drawbacks -Using `wrapProgram` will be simpler then using `combineWrappersInfo` and it might be +Using `wrapProgram` is simpler than using `combineWrappersInfo` and it might be hard to explain why is there no `wrapProgramAuto`. However, this interface might get improved in design through this RFC or in the future and in any case proper documentation should help.