diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-08-30 10:20:02 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-08-30 10:20:02 +0200 |
commit | ea206df45f32c5277980d24c76d2522a27f1f748 (patch) | |
tree | c57a3d645ec21318b17f73c58a5935a773293b0d | |
parent | e2c1b70c2bf328c79380ef676086ddc59cbee119 (diff) | |
download | patches-ea206df45f32c5277980d24c76d2522a27f1f748.tar patches-ea206df45f32c5277980d24c76d2522a27f1f748.tar.gz |
doc: Update '--show' example to use '@' syntax.
* doc/guix.texi (Invoking guix package): Use '@' syntax in --show
example.
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index e25cf58a31..b22cf4a094 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -1718,9 +1718,9 @@ version: 3.3.5 You may also specify the full name of a package to only get details about a specific version of it: @example -$ guix package --show=python-3.3.5 | recsel -p name,version +$ guix package --show=python@@3.4 | recsel -p name,version name: python -version: 3.3.5 +version: 3.4.3 @end example |