Skip to content

Commit 44a0562

Browse files
Fix typos and omissions in README
1 parent 35aaec4 commit 44a0562

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ to run the benchmarks against the latest commit.
2424
### **If you have not installed Anaconda or miniconda**
2525

2626

27-
If you do not have conda or miniconda installed, change the contents of the file `asv.conf.json` as follows to use `virutalenv` to run the benchmarks
27+
If you do not have conda or miniconda installed, change the contents of the file `asv.conf.json` as follows to use `virtualenv` to run the benchmarks
2828

2929
```json
3030
{
@@ -33,8 +33,12 @@ If you do not have conda or miniconda installed, change the contents of the file
3333
"project_url": "https://www.djangoproject.com/",
3434
"repo": "https://github.com/django/django.git",
3535
"branches": ["main"],
36+
"build_command": [
37+
"python -m pip install build",
38+
"python -m build --wheel -o {build_cache_dir} {build_dir}"
39+
],
3640
"environment_type": "virtualenv",
37-
"show_commit_url": "http://github.com/django/django/commit/",
41+
"show_commit_url": "http://github.com/django/django/commit/"
3842
}
3943
```
4044

@@ -50,7 +54,7 @@ asv run
5054
## **Comparing Benchmarks Results Of Different Commits Or Branches**
5155
---
5256

53-
Benchmarking results of differnt branches can be compared using the following method
57+
Benchmarking results of different branches can be compared using the following method
5458

5559
```
5660
asv run <commit1 SHA or branch1 name>

0 commit comments

Comments
 (0)