From d7f7bff92476fdca1d1e022f6dcfc919784e1a57 Mon Sep 17 00:00:00 2001 From: imhardikj Date: Mon, 13 Jul 2020 00:49:55 +0530 Subject: [PATCH] update --- content/docs/command-reference/plots/diff.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/content/docs/command-reference/plots/diff.md b/content/docs/command-reference/plots/diff.md index 3104f30fea..3730f6ae57 100644 --- a/content/docs/command-reference/plots/diff.md +++ b/content/docs/command-reference/plots/diff.md @@ -47,17 +47,14 @@ please see `dvc plots`. - `--targets ` - specific metric files to visualize. These must be listed in a [`dvc.yaml`](/doc/user-guide/dvc-files-and-directories#dvcyaml-file) file - (see the `--plots` option of `dvc run`). When you are specifying multiple - arguments for `--targets` and `revisions`, use `--` after all the arguments - for `--targets`: + (see the `--plots` option of `dvc run`). When specifying multiple `--targets` + and `revisions`, you may use `--` after this option's arguments, e.g.: ```dvc $ dvc plots diff --targets t1.json t2.csv -- HEAD v1 v2 ``` - Without `--`. this statement will show an error as argument parser confuses - `revisions` as arguments for `--targets` option. Alternatively, you can also - run above statement as: + Alternatively, you can also run above statement as: ```dvc $ dvc plots diff HEAD v1 v2 --targets t1.json t2.csv