From b649b35bccab97a0f8a5cdd3a37216b5f6db16dc Mon Sep 17 00:00:00 2001 From: Daniel Stockman Date: Thu, 7 Nov 2019 14:49:34 -0800 Subject: [PATCH] fix(filter-options): Clarify `--since` description --- core/filter-options/README.md | 2 +- core/filter-options/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/filter-options/README.md b/core/filter-options/README.md index 570a9614de..163fc7c80d 100644 --- a/core/filter-options/README.md +++ b/core/filter-options/README.md @@ -36,7 +36,7 @@ Exclude private packages. They are included by default. ### `--since [ref]` -Only include packages that have been updated since the specified `ref`. If no ref is passed, it defaults to the most-recent tag. +Only include packages that have been changed since the specified `ref`. If no ref is passed, it defaults to the most-recent tag. ```sh # List the contents of packages that have changed since the latest tag diff --git a/core/filter-options/index.js b/core/filter-options/index.js index 9a5e9bd836..658f974802 100644 --- a/core/filter-options/index.js +++ b/core/filter-options/index.js @@ -31,7 +31,7 @@ function filterOptions(yargs) { }, since: { describe: dedent` - Only include packages that have been updated since the specified [ref]. + Only include packages that have been changed since the specified [ref]. If no ref is passed, it defaults to the most-recent tag. `, type: "string",