Skip to content

Commit 368ba6b

Browse files
committed
Merge branch 'mw/doc-typofixes' into maint
Typofixes. * mw/doc-typofixes: docs: typo: s/isimilar/similar/ docs: graph: remove unnecessary `graph_update()' call docs: typo: s/go/to/
2 parents 587b3f5 + ad0b8f9 commit 368ba6b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Documentation/git-rebase.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ command fails, it is rescheduled immediately, with a helpful message how
954954
to proceed.
955955

956956
The `reset` command resets the HEAD, index and worktree to the specified
957-
revision. It is isimilar to an `exec git reset --hard <label>`, but
957+
revision. It is similar to an `exec git reset --hard <label>`, but
958958
refuses to overwrite untracked files. If the `reset` command fails, it is
959959
rescheduled immediately, with a helpful message how to edit the todo list
960960
(this typically happens when a `reset` command was inserted into the todo

Documentation/technical/api-history-graph.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Calling sequence
8080
it is invoked.
8181

8282
* For each commit, call `graph_next_line()` repeatedly, until
83-
`graph_is_commit_finished()` returns non-zero. Each call go
83+
`graph_is_commit_finished()` returns non-zero. Each call to
8484
`graph_next_line()` will output a single line of the graph. The resulting
8585
lines will not contain any newlines. `graph_next_line()` returns 1 if the
8686
resulting line contains the current commit, or 0 if this is merely a line
@@ -115,7 +115,6 @@ struct commit *commit;
115115
struct git_graph *graph = graph_init(opts);
116116

117117
while ((commit = get_revision(opts)) != NULL) {
118-
graph_update(graph, commit);
119118
while (!graph_is_commit_finished(graph))
120119
{
121120
struct strbuf sb;

0 commit comments

Comments
 (0)