From 43023a5428062829c16725e5833da763fc19353a Mon Sep 17 00:00:00 2001 From: lixiaobing10051267 Date: Mon, 17 Oct 2016 17:25:58 +0800 Subject: [PATCH] fix wrong output titile for docker volume ls Signed-off-by: lixiaobing10051267 --- docs/extend/index.md | 2 +- docs/reference/commandline/volume_ls.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/extend/index.md b/docs/extend/index.md index 9ca4dd9c42..e8b964ba15 100644 --- a/docs/extend/index.md +++ b/docs/extend/index.md @@ -97,7 +97,7 @@ started without error. ```bash $ docker volume ls - DRIVER NAME + DRIVER VOLUME NAME vieux/sshfs sshvolume ``` diff --git a/docs/reference/commandline/volume_ls.md b/docs/reference/commandline/volume_ls.md index 8d36ce2b87..fb8c658261 100644 --- a/docs/reference/commandline/volume_ls.md +++ b/docs/reference/commandline/volume_ls.md @@ -99,7 +99,7 @@ regardless of its value. ```bash $ docker volume ls --filter label=is-timelord -DRIVER NAME +DRIVER VOLUME NAME local daleks local the-doctor ``` @@ -112,7 +112,7 @@ Filtering on both `key` *and* `value` of the label, produces the expected result ```bash $ docker volume ls --filter label=is-timelord=yes -DRIVER NAME +DRIVER VOLUME NAME local the-doctor ``` @@ -122,7 +122,7 @@ should be met; ```bash $ docker volume ls --filter label=is-timelord=yes --filter label=is-timelord=no -DRIVER NAME +DRIVER VOLUME NAME ``` ### name