Restore warning about 'nix' being experimental

Fixes #4552.
This commit is contained in:
Eelco Dolstra 2021-02-17 15:30:49 +01:00
parent 54ab377288
commit 6042febfce

View file

@ -7,7 +7,10 @@ let
showCommand =
{ command, def, filename }:
"# Name\n\n"
''
**Warning**: This program is **experimental** and its interface is subject to change.
''
+ "# Name\n\n"
+ "`${command}` - ${def.description}\n\n"
+ "# Synopsis\n\n"
+ showSynopsis { inherit command; args = def.args; }