Skip to content

Commit 69dcd29

Browse files
author
Kaartic Sivaraam
committed
Improved a sentence
A sentence thatput the main point at the end didn't seem nice and thus the point was specified earlier followed by it's outcome A sample code was made better as it seems to have the same effect
1 parent 990f59a commit 69dcd29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/07-git-tools/sections/searching.asc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ As we saw in the above example, we looked for terms in an older version of the G
9595
Perhaps you're looking not for *where* a term exists, but *when* it existed or was introduced.
9696
The `git log` command has a number of powerful tools for finding specific commits by the content of their messages or even the content of the diff they introduce.
9797

98-
If we want to find out for example when the `ZLIB_BUF_MAX` constant was originally introduced, we can tell Git to only show us the commits that either added or removed that string with the `-S` option.
98+
If we want to find out for example when the `ZLIB_BUF_MAX` constant was originally introduced, we can use the `-S` option to tell Git to only show us the commits that either added or removed that string.
9999

100100
[source,console]
101101
----
102-
$ git log -SZLIB_BUF_MAX --oneline
102+
$ git log -S ZLIB_BUF_MAX --oneline
103103
e01503b zlib: allow feeding more than 4GB in one go
104104
ef49a7a zlib: zlib can only process 4GB at a time
105105
----

0 commit comments

Comments
 (0)