Skip to content

Commit 7ed174b

Browse files
committed
fix(cmd[git]): Typo fixes
1 parent 5a421db commit 7ed174b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/libvcs/cmd/git.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2390,7 +2390,7 @@ def run(
23902390
check_returncode: Optional[bool] = None,
23912391
**kwargs: Any,
23922392
) -> str:
2393-
r"""Wraps `git submodule <https://git-scm.com/docs/git-remote>`_.
2393+
r"""Wraps `git remote <https://git-scm.com/docs/git-remote>`_.
23942394
23952395
Examples
23962396
--------
@@ -2425,7 +2425,7 @@ def add(
24252425
log_in_real_time: bool = False,
24262426
check_returncode: Optional[bool] = None,
24272427
) -> str:
2428-
"""git submodule add
2428+
"""git remote add
24292429
24302430
Examples
24312431
--------
@@ -2461,7 +2461,7 @@ def rename(
24612461
log_in_real_time: bool = False,
24622462
check_returncode: Optional[bool] = None,
24632463
) -> str:
2464-
"""git submodule rename
2464+
"""git remote rename
24652465
24662466
Examples
24672467
--------
@@ -2494,7 +2494,7 @@ def remove(
24942494
log_in_real_time: bool = False,
24952495
check_returncode: Optional[bool] = None,
24962496
) -> str:
2497-
"""git submodule remove
2497+
"""git remote remove
24982498
24992499
Examples
25002500
--------
@@ -2523,7 +2523,7 @@ def show(
25232523
log_in_real_time: bool = False,
25242524
check_returncode: Optional[bool] = None,
25252525
) -> str:
2526-
"""git submodule show
2526+
"""git remote show
25272527
25282528
Examples
25292529
--------
@@ -2558,7 +2558,7 @@ def prune(
25582558
log_in_real_time: bool = False,
25592559
check_returncode: Optional[bool] = None,
25602560
) -> str:
2561-
"""git submodule prune
2561+
"""git remote prune
25622562
25632563
Examples
25642564
--------
@@ -2592,7 +2592,7 @@ def get_url(
25922592
log_in_real_time: bool = False,
25932593
check_returncode: Optional[bool] = None,
25942594
) -> str:
2595-
"""git submodule get-url
2595+
"""git remote get-url
25962596
25972597
Examples
25982598
--------
@@ -2634,7 +2634,7 @@ def set_url(
26342634
log_in_real_time: bool = False,
26352635
check_returncode: Optional[bool] = None,
26362636
) -> str:
2637-
"""git submodule set-url
2637+
"""git remote set-url
26382638
26392639
Examples
26402640
--------

0 commit comments

Comments
 (0)