Skip to content

Commit c6d0091

Browse files
foxysetaCKolkey
authored andcommitted
doc: fix incorrect usages of "it's"
1 parent 524ae32 commit c6d0091

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

doc/neogit.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1365,16 +1365,16 @@ Actions: *neogit_commit_popup_actions*
13651365
• Alter *neogit_commit_alter*
13661366
Create a squash commit, authoring the final message now.
13671367

1368-
During a later rebase, when this commit gets squashed into it's targeted
1368+
During a later rebase, when this commit gets squashed into its targeted
13691369
commit, the original message of the targeted commit is replaced with the
13701370
message of this commit, without the user automatically being given a
13711371
chance to edit it again.
13721372

13731373
`git commit --fixup=amend:COMMIT --edit`
13741374

13751375
• Revise *neogit_commit_revise*
1376-
Reword the message of an existing commit, without editing it's tree.
1377-
Later, when the commit is squashed into it's targeted commit, a combined
1376+
Reword the message of an existing commit, without editing its tree.
1377+
Later, when the commit is squashed into its targeted commit, a combined
13781378
commit is created which uses the message of the fixup commit and the tree
13791379
of the targeted commit.
13801380

@@ -1610,7 +1610,7 @@ Actions: *neogit_pull_popup_actions*
16101610
pulled from and used to set `branch.<name>.pushRemote`.
16111611

16121612
• Pull into <current> from @{upstream} *neogit_pull_upstream*
1613-
Pulls into the current branch from it's upstream counterpart. If that is
1613+
Pulls into the current branch from its upstream counterpart. If that is
16141614
unset, the user will be prompted to select a remote branch, which will
16151615
pulled from and set as the upstream.
16161616

@@ -1680,7 +1680,7 @@ Actions: *neogit_push_popup_actions*
16801680
and pushed to.
16811681

16821682
• Push <current> to @{upstream} *neogit_push_upstream*
1683-
Pushes the current branch to it's upstream branch. If not set, then the
1683+
Pushes the current branch to its upstream branch. If not set, then the
16841684
user will be prompted to select a remote, which will be set as the
16851685
current branch's upstream and pushed to.
16861686

@@ -1802,13 +1802,13 @@ Arguments: *neogit_rebase_popup_args*
18021802

18031803
Actions: *neogit_rebase_popup_actions*
18041804
• Rebase onto pushRemote *neogit_rebase_pushRemote*
1805-
This action rebases the current branch onto it's pushRemote.
1805+
This action rebases the current branch onto its pushRemote.
18061806

18071807
When the pushRemote is not configured, then the user can first set it
18081808
before rebasing.
18091809

18101810
• Rebase onto upstream *neogit_rebase_upstream*
1811-
This action rebases the current branch onto it's upstream branch.
1811+
This action rebases the current branch onto its upstream branch.
18121812

18131813
When the upstream is not configured, then the user can first set it
18141814
before rebasing.
@@ -2198,7 +2198,7 @@ Popup Builder *neogit_popup_builder*
21982198

21992199
You can leverage Neogit's infrastructure to create your own popups and
22002200
actions. For example, you can define actions as a function which will take the
2201-
popup instance as it's argument:
2201+
popup instance as its argument:
22022202
>lua
22032203
local function my_action(popup)
22042204
-- You can access the popup state (enabled flags) like so:
@@ -2226,7 +2226,7 @@ popup instance as it's argument:
22262226
-- A switch is a boolean CLI flag, like `--no-verify`
22272227
:switch("s", "my-switch", "My switch")
22282228
-- An "_if" variant exists for builder methods, that takes a boolean
2229-
-- as it's first argument.
2229+
-- as its first argument.
22302230
:switch_if(true, "S", "conditional-switch", "This switch is conditional")
22312231
-- Options are CLI flags that have a value, like `--strategy=octopus`
22322232
:option("o", "my-option", "default_value", "My option", { key_prefix = "-" })

0 commit comments

Comments
 (0)