From 5f76adfc3ec805de608dee58a9011fae869ebcb0 Mon Sep 17 00:00:00 2001 From: Sahdev Zala Date: Wed, 12 May 2021 14:13:08 -0400 Subject: [PATCH] doc: fix output flag format Add missing dash in the flag. --- etcdctl/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etcdctl/README.md b/etcdctl/README.md index 2fa019868..c1ae47618 100644 --- a/etcdctl/README.md +++ b/etcdctl/README.md @@ -1040,12 +1040,12 @@ Prints a line of JSON encoding the database hash, revision, total keys, and size ``` ```bash -./etcdctl -write-out=json snapshot status file.db +./etcdctl --write-out=json snapshot status file.db # {"hash":3474280699,"revision":3,"totalKey":3,"totalSize":24576} ``` ```bash -./etcdctl -write-out=table snapshot status file.db +./etcdctl --write-out=table snapshot status file.db +----------+----------+------------+------------+ | HASH | REVISION | TOTAL KEYS | TOTAL SIZE | +----------+----------+------------+------------+