aboutsummaryrefslogtreecommitdiffhomepage
path: root/release_notes.html
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-06-05 00:42:45 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-06-05 00:42:45 -0700
commit9bf8a5e877829189df08efc05058ae1b2f04fba8 (patch)
tree6989746d11ec06b4c1cf028a8b1f12797491e1c6 /release_notes.html
parent3836bfe5a109ef87cc36fc42747b0cab43fc861d (diff)
Updated release notes for new history syntax
Diffstat (limited to 'release_notes.html')
-rw-r--r--release_notes.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/release_notes.html b/release_notes.html
index 45ee8e7e..b80e5c2c 100644
--- a/release_notes.html
+++ b/release_notes.html
@@ -27,8 +27,8 @@ li {
<li>A <b>history builtin</b>, and associated interactive function that enables deleting history items. Example usage:
<ul>
-<li>Print all history items beginning with echo: <span class="mono">history --search --prefix echo</span></li>
-<li>Print all history items containing foo: <span class="mono">history --search --contains foo</span></li>
+<li>Print all history items beginning with echo: <span class="mono">history --prefix echo</span></li>
+<li>Print all history items containing foo: <span class="mono">history --contains foo</span></li>
<li>Interactively delete some items containing foo: <span class="mono">history --delete --contains foo</span></li>
</ul><br>
Credit to Siteshwar for implementation. Thanks Siteshwar!