Skip to content

Commit 5265a53

Browse files
committed
!squash fix typo
1 parent f368256 commit 5265a53

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/libvcs/cmd/git.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -2732,7 +2732,7 @@ def set_url(
27322732

27332733

27342734
class GitRemoteManager:
2735-
"""Run commands directly related to git remotees of a git repo."""
2735+
"""Run commands directly related to git remotes of a git repo."""
27362736

27372737
remote_name: str
27382738

@@ -2785,7 +2785,7 @@ def run(
27852785
check_returncode: bool | None = None,
27862786
**kwargs: Any,
27872787
) -> str:
2788-
"""Run a command against a git repository's remotees.
2788+
"""Run a command against a git repository's remotes.
27892789
27902790
Wraps `git remote <https://git-scm.com/docs/git-remote>`_.
27912791
@@ -2881,7 +2881,7 @@ def show(
28812881
)
28822882

28832883
def _ls(self) -> list[str]:
2884-
"""List remotees.
2884+
"""List remotes.
28852885
28862886
Examples
28872887
--------
@@ -2893,7 +2893,7 @@ def _ls(self) -> list[str]:
28932893
).splitlines()
28942894

28952895
def ls(self) -> QueryList[GitRemoteCmd]:
2896-
"""List remotees.
2896+
"""List remotes.
28972897
28982898
Examples
28992899
--------
@@ -2932,7 +2932,7 @@ def get(self, *args: t.Any, **kwargs: t.Any) -> GitRemoteCmd | None:
29322932
return self.ls().get(*args, **kwargs)
29332933

29342934
def filter(self, *args: t.Any, **kwargs: t.Any) -> list[GitRemoteCmd]:
2935-
"""Get remotees via filter lookup.
2935+
"""Get remotes via filter lookup.
29362936
29372937
Examples
29382938
--------

0 commit comments

Comments
 (0)