Fixed typos

This commit is contained in:
Pascal Borreli 2015-04-09 01:37:07 +02:00
parent e3bc1a3f82
commit ce6dcd3931
2 changed files with 2 additions and 2 deletions

@ -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 pointer file. It also queues the file to be pushed by
git-lfs-push(1). 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. Git attributes.
## SEE ALSO ## SEE ALSO

@ -344,7 +344,7 @@ type wrappedCmd struct {
} }
// startCommand starts up a command and creates a stdin pipe and a buffered // 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. // bytes.
func startCommand(command string, args ...string) (*wrappedCmd, error) { func startCommand(command string, args ...string) (*wrappedCmd, error) {
cmd := exec.Command(command, args...) cmd := exec.Command(command, args...)