Skip to content

Commit 5e6ac61

Browse files
Polaris000jgbarah
authored andcommitted
fix a couple of typos and markdown syntax errors (#56)
1 parent eeed29f commit 5e6ac61

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

basics/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ If you want, you can also produce the Python packages (wheels and dists) for any
237237
$ python3 build_grimoirelab --build --distdir /tmp/ivenv
238238
```
239239

240-
You can get a listing of all the options of `build_grimoirelab' by using its `--help` flag:
240+
You can get a listing of all the options of `build_grimoirelab` by using its `--help` flag:
241241

242242
```bash
243243
$ python3 build_grimoirelab --help

perceval/git.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Your output will vary depending on the exact version of Perceval you have, and w
9090

9191
This will produce the file `/tmp/perceval.test` with all the retrieved commits.
9292

93-
To produce this result, Perceval cloned the git repository to analyze, and got information for all its commits by using the `git log` command under the hoods. Therefore, you need to have git installed, but if you're are in the business of developing software, it would be weird you didn't have.
93+
To produce this result, Perceval cloned the git repository to analyze, and got information for all its commits by using the `git log` command under the hoods. Therefore, you need to have git installed, but if you're are in the business of developing software, it would be weird if you didn't have it.
9494

9595
One interesting detail of this behavior is that Perceval is cloning the git repository once and again, to analyze it. You can tell Perceval where to store it, and reuse it the next time. You will probably notice the difference if you use the time command:
9696

@@ -138,7 +138,7 @@ repo_dir = '/tmp/perceval.git'
138138

139139
# create a Git object, pointing to repo_url, using repo_dir for cloning
140140
repo = Git(uri=repo_url, gitpath=repo_dir)
141-
# fetch all commits as an iteratoir, and iterate it printing each hash
141+
# fetch all commits as an iterator, and iterate it printing each hash
142142
for commit in repo.fetch():
143143
print(commit['data']['commit'])
144144
```

0 commit comments

Comments
 (0)