Skip to content

Commit e98e470

Browse files
committed
Merge pull request git-lfs#689 from kaleworsley/fix_typos
Fix typos
2 parents 7379fa9 + eef8c9b commit e98e470

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

commands/command_push.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var (
2020
pushAll = false
2121
useStdin = false
2222

23-
// shares some global vars and functions with commmands_pre_push.go
23+
// shares some global vars and functions with command_pre_push.go
2424
)
2525

2626
func uploadsBetweenRefs(left string, right string) *lfs.TransferQueue {

commands/command_untrack.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var (
1818
)
1919

2020
// untrackCommand takes a list of paths as an argument, and removes each path from the
21-
// default attribtues file (.gitattributes), if it exists.
21+
// default attributes file (.gitattributes), if it exists.
2222
func untrackCommand(cmd *cobra.Command, args []string) {
2323
if lfs.LocalGitDir == "" {
2424
Print("Not a git repository.")

lfs/setup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func InstallHooks(force bool) error {
4848
return nil
4949
}
5050

51-
// UninstallHooks resmoves all hooks in range of the `hooks` var.
51+
// UninstallHooks removes all hooks in range of the `hooks` var.
5252
func UninstallHooks() error {
5353
for _, h := range hooks {
5454
if err := h.Uninstall(); err != nil {

0 commit comments

Comments
 (0)