summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index bd1d46c..9a914a1 100644
--- a/README.md
+++ b/README.md
@@ -79,29 +79,29 @@ On the other hand, `bfs` lists files from shallowest to deepest, so you never ha
<td width="506" valign="top">
```console
-$ find haystack
+$ bfs haystack
haystack
haystack/deep
-haystack/deep/1
-haystack/deep/1/2
-haystack/deep/1/2/3
-haystack/deep/1/2/3/4
-...
haystack/shallow
+haystack/deep/1
haystack/shallow/needle
+...
```
</td>
<td width="506" valign="top">
```console
-$ bfs haystack
+$ find haystack
haystack
haystack/deep
-haystack/shallow
haystack/deep/1
-haystack/shallow/needle
+haystack/deep/1/2
+haystack/deep/1/2/3
+haystack/deep/1/2/3/4
...
+haystack/shallow
+haystack/shallow/needle
```
</td>