From 9d2d721230a7a2b48e12cbbb83bfc3b5f7ceb5b1 Mon Sep 17 00:00:00 2001 From: Brian Woodward Date: Mon, 4 Jul 2016 09:46:27 -0400 Subject: [PATCH] update examples to match changes in updatefile.js --- .verb.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.verb.md b/.verb.md index ba847d6..baad80e 100644 --- a/.verb.md +++ b/.verb.md @@ -44,7 +44,7 @@ Try the following steps to get familiarized with how update works: - [ ] run `$ update example` to execute the default task, which will append the string `foo` to the file's contents. - [ ] run `$ update example:foo` to execute the `foo` task, appending the string `foo` to the file's contents - [ ] run `$ update example:bar` to execute the `bar` task, appending the string `bar` to the file's contents -- [ ] run `$ update example.abc` to execute the default task on the `abc` (sub-)updater, appending the string `abc:one` to the file's contents -- [ ] run `$ update example.abc:one` to execute the `one` task on the `abc` (sub-)updater, appending the string `abc:one` to the file's contents +- [ ] run `$ update example.abc` to execute the default task on the `abc` (sub-)updater, appending the string `abc:default` to the file's contents +- [ ] run `$ update example.abc:xyz` to execute the `xyz` task on the `abc` (sub-)updater, appending the string `abc:xyz` to the file's contents See [the code](updatefile.js) for more details.