- commit
- e082026
- parent
- 8014605
- author
- Jeremy Clarke
- date
- 2024-07-20 10:59:21 -0400 EDT
docs: fix typo / minor rewording in readme
1 files changed,
+5,
-5
+5,
-5
1@@ -124,11 +124,11 @@ git push origin main
2 # Done!
3 ```
4
5-The fundamental collaboration tool here is `format-patch`. Whether you a
6-submitting code changes or you are reviewing code changes, it all happens in
7-code. Both contributor and owner are simply creating new commits and generating
8-patches on top of each other. This obviates the need to have a web viewer where
9-the reviewer can "comment" on a line of code block. There's no need, apply the
10+The fundamental collaboration tool here is `format-patch`. Whether you are
11+submitting code changes or reviewing them, it all happens in code. Both
12+contributor and owner are simply creating new commits and generating patches
13+on top of each other. This obviates the need to have a web viewer where the
14+reviewer can "comment" on a line of code block. There's no need, apply the
15 contributor's patches, write comments or code changes, generate a new patch,
16 send the patch to the git server as a "review." This flow also works the exact
17 same if two users are collaborating on a set of changes.