Merge pull request #3728 from kittenking/typo-fix

Fix typos across git-lfs repository
This commit is contained in:
brian m. carlson 2019-07-24 13:47:18 +00:00 committed by GitHub
commit ca6bd2028e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 22 additions and 22 deletions

@ -139,7 +139,7 @@ type Values struct {
}
// NewFrom returns a new `*config.Configuration` that reads both its Git
// and Enviornment-level values from the ones provided instead of the actual
// and Environment-level values from the ones provided instead of the actual
// `.gitconfig` file or `os.Getenv`, respectively.
//
// This method should only be used during testing.

@ -7,7 +7,7 @@ import (
// delayedEnvironment is an implementation of the Environment which wraps the legacy
// behavior of `*config.Configuration.loadGitConfig()`.
//
// It is functionally equivelant to call `cfg.loadGitConfig()` before calling
// It is functionally equivalent to call `cfg.loadGitConfig()` before calling
// methods on the Environment type.
type delayedEnvironment struct {
env Environment

@ -1,7 +1,7 @@
package config
// Fetcher provides an interface to get typed information out of a configuration
// "source". These sources could be the OS enviornment, a .gitconfig, or even
// "source". These sources could be the OS environment, a .gitconfig, or even
// just a `map`.
type Fetcher interface {
// Get returns the string value associated with a given key and a bool

@ -12,7 +12,7 @@ import (
type OsFetcher struct {
// vmu guards read/write access to vals
vmu sync.Mutex
// vals maintains a local cache of the system's enviornment variables
// vals maintains a local cache of the system's environment variables
// for fast repeat lookups of a given key.
vals map[string]*string
}

@ -5,7 +5,7 @@
# ./run_dockers.bsh centos_6 centos_7 - Run only CentOS 6 & 7 image
# ./run_dockers.bsh centos_6 -- bash #Runs bash in the CentOS 6 docker
#
# Special Environmet Variables
# Special Environments Variables
# REPO_HOSTNAME - Override the hostname for all the repos generated/tested
# DOCKER_AUTOPULL - Default 1. If set to 0, it will not build docker images
# before running

@ -364,7 +364,7 @@ type LockList struct {
// `LockListRequest`.
NextCursor string `json:"next_cursor,omitempty"`
// Err populates any error that was encountered during the search. If no
// error was encountered and the operation was succesful, then a value
// error was encountered and the operation was successful, then a value
// of nil will be passed here.
Err error `json:"error,omitempty"`
}

@ -69,7 +69,7 @@
< }
```
* **Bad repsonse: server error**
* **Bad response: server error**
```
< HTTP/1.1 500 Internal server error
< Content-Type: application/vnd.git-lfs+json
@ -93,7 +93,7 @@
> Authorization: Basic
```
### Repsonse
### Response
* **Success: unlocked**
```

@ -11,7 +11,7 @@ go through the ntlm auth flow.
We will store NTLM credentials in the credential helper. When the user is prompted for their credentials they must use username:{DOMAIN}\{user} and password:{pass}
The ntlm protocl will be handled by an ntlm.go class that hides the implementation of InitHandshake, Authenticate, and Challenge. This allows miminal changesto the existing
The ntlm protocol will be handled by an ntlm.go class that hides the implementation of InitHandshake, Authenticate, and Challenge. This allows miminal changesto the existing
client.go class.
### Tech

@ -16,7 +16,7 @@ import (
)
// DatabaseFromFixture returns a *gitobj.ObjectDatabase instance that is safely
// mutable and created from a template equivelant to the fixture that you
// mutable and created from a template equivalent to the fixture that you
// provided it.
//
// If any error was encountered, it will call t.Fatalf() immediately.

@ -43,7 +43,7 @@ func (c *Client) LogHTTPStats(w io.WriteCloser) {
}
// LogStats is intended to be called after all HTTP operations for the
// commmand have finished. It dumps k/v logs, one line per httpTransfer into
// command have finished. It dumps k/v logs, one line per httpTransfer into
// a log file with the current timestamp.
//
// DEPRECATED: Call LogHTTPStats() before the first HTTP request.

@ -172,7 +172,7 @@ type lockList struct {
// `LockListRequest`.
NextCursor string `json:"next_cursor,omitempty"`
// Message populates any error that was encountered during the search. If no
// error was encountered and the operation was succesful, then a value
// error was encountered and the operation was successful, then a value
// of nil will be passed here.
Message string `json:"message,omitempty"`
DocumentationURL string `json:"documentation_url,omitempty"`
@ -238,7 +238,7 @@ type lockVerifiableList struct {
// `LockListRequest`.
NextCursor string `json:"next_cursor,omitempty"`
// Message populates any error that was encountered during the search. If no
// error was encountered and the operation was succesful, then a value
// error was encountered and the operation was successful, then a value
// of nil will be passed here.
Message string `json:"message,omitempty"`
DocumentationURL string `json:"documentation_url,omitempty"`

@ -35,7 +35,7 @@ func (c *LockCache) Add(l Lock) error {
return nil
}
// Remove a cached lock by path becuase it's been relinquished
// Remove a cached lock by path because it's been relinquished
func (c *LockCache) RemoveByPath(filePath string) error {
ilock := c.kv.Get(filePath)
if lock, ok := ilock.(*Lock); ok && lock != nil {

@ -393,7 +393,7 @@ func (c *Client) searchRemoteLocks(filter map[string]string, limit int) ([]Lock,
//
// If the API call failed, an error will be returned. If multiple locks matched
// the given path (should not happen during real-world usage), an error will be
// returnd. If no locks matched the given path, an error will be returned.
// returned. If no locks matched the given path, an error will be returned.
//
// If the API call is successful, and only one lock matches the given filepath,
// then its ID will be returned, along with a value of "nil" for the error.

@ -171,7 +171,7 @@ touch ${CURDIR}/SOURCES/RPM-GPG-KEY-GITLFS
echo "Build git-lfs rpm..."
#--no-deps added for now so you can compile without offical rpms installed
#--no-deps added for now so you can compile without official rpms installed
"${RPMBUILD[@]}" --nodeps -ba ${CURDIR}/SPECS/git-lfs.spec
echo "All Done!"

@ -439,7 +439,7 @@ func (r *Repo) AddRemote(name string) *Repo {
return remote
}
// Just a psuedo-random stream of bytes (not cryptographic)
// Just a pseudo-random stream of bytes (not cryptographic)
// Calls RNG a bit less often than using rand.Source directly
type PlaceholderDataReader struct {
source rand.Source

@ -4,7 +4,7 @@
ensure_git_version_isnt $VERSION_LOWER "2.3.0"
begin_test "credentails with url-specific helper skips askpass"
begin_test "credentials with url-specific helper skips askpass"
(
set -e

@ -6,7 +6,7 @@ begin_test "multiple revs with same OID get pushed once"
(
set -e
reponame="mutliple-revs-one-oid"
reponame="multiple-revs-one-oid"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"

@ -57,7 +57,7 @@ func ForceProgress(v bool) Option {
}
}
// NewLogger retuns a new *Logger instance that logs to "sink" and uses the
// NewLogger returns a new *Logger instance that logs to "sink" and uses the
// current terminal width as the width of the line. Will log progress status if
// stdout is a terminal or if forceProgress is true
func NewLogger(sink io.Writer, options ...Option) *Logger {

@ -149,7 +149,7 @@ func (set StringSet) Iter() <-chan string {
// Equal determines if two sets are equal to each other.
// If they both are the same size and have the same items they are considered equal.
// Order of items is not relevent for sets to be equal.
// Order of items is not relevant for sets to be equal.
func (set StringSet) Equal(other StringSet) bool {
if set.Cardinality() != other.Cardinality() {
return false

@ -120,7 +120,7 @@ func (a *customAdapter) Begin(cfg AdapterConfig, cb ProgressCallback) error {
}
func (a *customAdapter) ClearTempStorage() error {
// no action requred
// no action required
return nil
}