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