Browse Source

Update README.md

Minor language edits.
Markus Borg 6 years ago
parent
commit
2ff5d2bb6d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      code/README.md

+ 3 - 3
code/README.md

@@ -27,13 +27,13 @@ system.
 ```python
 ```python
 python fetch.py
 python fetch.py
 ```
 ```
-It creates a directory with issues. To convert these into a format where they can
+It creates a directory with issues. To convert these into a format from which they can
 be processed, use:
 be processed, use:
 ```python
 ```python
 python git_log_to_array.py <path_to_local_repo>
 python git_log_to_array.py <path_to_local_repo>
 ```
 ```
 This creates a file `gitlog.json` that is used to link the issues to bug fixing
 This creates a file `gitlog.json` that is used to link the issues to bug fixing
-commits. Using the `find_bug_fixes.py` and this file, we can get a json file
+commits. Using the `find_bug_fixes.py` and this file, we get a json file
 that contains the Issue and its corresponding commit SHA-1, the commit date,
 that contains the Issue and its corresponding commit SHA-1, the commit date,
 the creation date and the resolution date.
 the creation date and the resolution date.
 
 
@@ -56,7 +56,7 @@ gradle build && gradle runJar
 ```
 ```
 
 
 The algorithm tries to use as many cores as possible during runtime. The more
 The algorithm tries to use as many cores as possible during runtime. The more
-the merrier so to say.
+the merrier so to speak.
 
 
 To get the bug introducing commits from a repository using the file produced
 To get the bug introducing commits from a repository using the file produced
 by the previous issue to bug fix commit step, run:
 by the previous issue to bug fix commit step, run: