Skip to content

clarify find usage #79

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion problems/find/less/find.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,18 @@ Your program should behave per the examples below. Assumed that the underlined t

[source,subs=quotes]
----
$ [underline]#./find TODO#
$ [underline]#./find 42#
[underline]#50#
[underline]#43#
[underline]#^D#
Didn't find needle in haystack.

$ [underline]#./find 42#
[underline]#50#
[underline]#42#
[underline]#^D#
Found needle in haystack!

----

== Testing
Expand Down Expand Up @@ -344,6 +355,8 @@ _None so far! Reload this page periodically to check if any arise!_

== Changelog

* 2017-03-09
** Clarified usage.
* 2016-09-21
** Update to `search` walkthrough
* 2016-09-17
Expand Down
15 changes: 14 additions & 1 deletion problems/find/more/find.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,18 @@ Your program should behave per the examples below. Assumed that the underlined t

[source,subs=quotes]
----
$ [underline]#./find TODO#
$ [underline]#./find 42#
[underline]#50#
[underline]#43#
[underline]#^D#
Didn't find needle in haystack.

$ [underline]#./find 42#
[underline]#50#
[underline]#42#
[underline]#^D#
Found needle in haystack!

----

== Testing
Expand Down Expand Up @@ -343,6 +354,8 @@ _None so far! Reload this page periodically to check if any arise!_

== Changelog

* 2017-03-09
** Clarified usage
* 2016-09-21
** Update to `search` walkthrough
* 2016-09-17
Expand Down