From ce6dcd39314724050055fd9364c4462d83cd650c Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Thu, 9 Apr 2015 01:37:07 +0200 Subject: [PATCH] Fixed typos --- docs/man/git-lfs-clean.1.ronn | 2 +- scanner/scanner.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/man/git-lfs-clean.1.ronn b/docs/man/git-lfs-clean.1.ronn index a4ef7325..86b190bc 100644 --- a/docs/man/git-lfs-clean.1.ronn +++ b/docs/man/git-lfs-clean.1.ronn @@ -11,7 +11,7 @@ Clean calculates a SHA-256 signature of the data from STDOUT, and outputs a Git LFS pointer file. It also queues the file to be pushed by git-lfs-push(1). -Clean is typicall run by Git's clean filter, configured by the repository's +Clean is typically run by Git's clean filter, configured by the repository's Git attributes. ## SEE ALSO diff --git a/scanner/scanner.go b/scanner/scanner.go index 81628289..6b9957f8 100644 --- a/scanner/scanner.go +++ b/scanner/scanner.go @@ -344,7 +344,7 @@ type wrappedCmd struct { } // startCommand starts up a command and creates a stdin pipe and a buffered -// stdout pipe, wrapped in a wrappedCmd. The stdout buffer wille be of stdoutBufSize +// stdout pipe, wrapped in a wrappedCmd. The stdout buffer will be of stdoutBufSize // bytes. func startCommand(command string, args ...string) (*wrappedCmd, error) { cmd := exec.Command(command, args...)