Skip to content

Commit f9fba3e

Browse files
committed
Correct two typographical errors.
1 parent 5f5ae31 commit f9fba3e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gitless/cli/gl_fuse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def parser(subparsers, repo):
1818
'fuse', help=desc, description=(
1919
desc.capitalize() + '. ' +
2020
'By default all divergent changes from the given source branch are '
21-
'fused. To customize the set of commmits to fuse use the only and '
21+
'fused. To customize the set of commits to fuse use the only and '
2222
'exclude flags'))
2323
fuse_parser.add_argument(
2424
'src', nargs='?',

gitless/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,7 @@ def fuse(self, src, ip, only=None, exclude=None, op_cb=None):
10201020
"""Fuse the given commits onto this branch.
10211021
10221022
Args:
1023-
src: the branch (Brach obj) to fuse commits from.
1023+
src: the branch (Branch obj) to fuse commits from.
10241024
ip: id of the commit to act as the insertion point. The commits to fuse
10251025
are inserted after this commit. ip has to correspond to one of the
10261026
divergent commits from self or the divergent point.

0 commit comments

Comments
 (0)