From f9d57fcf0dc5cab2e5e26f6cbea9680905fecc50 Mon Sep 17 00:00:00 2001 From: Yang Zhang Date: Mon, 30 Dec 2019 19:41:46 +0800 Subject: [PATCH] Fix error in config doc (#145) `--minimal` is option for `generate` and should be positioned after it --- docs/CONFIG.md | 2 +- docs/CONFIG_cn.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/CONFIG.md b/docs/CONFIG.md index 3cba54eb5..3c9984205 100644 --- a/docs/CONFIG.md +++ b/docs/CONFIG.md @@ -191,7 +191,7 @@ A small utility (`tools/configure.py`) is included to simplify the configuration For a minimal version, run: ```shell - python tools/configure.py --minimal generate FasterRCNN BBoxHead + python tools/configure.py generate --minimal FasterRCNN BBoxHead ``` diff --git a/docs/CONFIG_cn.md b/docs/CONFIG_cn.md index 8b7eaa653..22084cb5d 100644 --- a/docs/CONFIG_cn.md +++ b/docs/CONFIG_cn.md @@ -181,7 +181,7 @@ pip install typeguard http://github.com/willthefrog/docstring_parser/tarball/mas 如需最小配置,运行: ```shell - python tools/configure.py --minimal generate FasterRCNN BBoxHead + python tools/configure.py generate --minimal FasterRCNN BBoxHead ``` -- GitLab