Skip to content

Commit 1ba7c75

Browse files
committed
chore: Fix typos
1 parent 0d156a3 commit 1ba7c75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ Internal functionality relating to remotes have been reorganized to avoid implic
515515

516516
## libvcs 0.1.2 (2016-06-20)
517517

518-
- change signature on `create_repo_from_pip_url` to accept `pip_url` insetad of `url`.
518+
- change signature on `create_repo_from_pip_url` to accept `pip_url` instead of `url`.
519519
- `Base` to accept `repo_dir` instead of `name` and `parent_dir`.
520520

521521
## libvcs 0.1.1 (2016-06-20)

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $ pip install --user --upgrade libvcs
2121
### Developmental releases
2222

2323
New versions of libvcs are published to PyPI as alpha, beta, or release candidates. In their
24-
versions you will see notfication like `a1`, `b1`, and `rc1`, respectively. `1.10.0b4` would mean
24+
versions you will see notification like `a1`, `b1`, and `rc1`, respectively. `1.10.0b4` would mean
2525
the 4th beta release of `1.10.0` before general availability.
2626

2727
- [pip]\:

tests/_internal/subprocess/test_SubprocessCommand.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_init(args: list, kwargs: dict, expected_result: Any):
3737
cmd = SubprocessCommand(*args, **kwargs)
3838
assert cmd == expected_result
3939

40-
# Attributes in cmd should match whats passed in
40+
# Attributes in cmd should match what's passed in
4141
for k, v in kwargs.items():
4242
assert getattr(cmd, k) == v
4343

0 commit comments

Comments
 (0)