Fix misspellings and typos

This commit is contained in:
morganamilo 2018-04-17 18:01:34 +01:00
parent 86bfacd253
commit 63471b9ede
No known key found for this signature in database
GPG Key ID: 6FE9E7996B0B082E
5 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@ func questionCallback(question alpm.QuestionAny) {
}) })
fmt.Print(bold(cyan(":: "))) fmt.Print(bold(cyan(":: ")))
str := bold(fmt.Sprintf(bold("There are %d providers avalable for %s:"), size, qp.Dep())) str := bold(fmt.Sprintf(bold("There are %d providers available for %s:"), size, qp.Dep()))
size = 1 size = 1
var db string var db string

2
cmd.go
View File

@ -206,7 +206,7 @@ func handleHelp() error {
//this function should only set config options //this function should only set config options
//but currently still uses the switch left over from old code //but currently still uses the switch left over from old code
//eventually this should be refactored out futher //eventually this should be refactored out further
//my current plan is to have yay specific operations in its own operator //my current plan is to have yay specific operations in its own operator
//e.g. yay -Y --gendb //e.g. yay -Y --gendb
//e.g yay -Yg //e.g yay -Yg

View File

@ -301,7 +301,7 @@ func depCatagoriesRecursive(_pkg *rpc.Pkg, dc *depCatagories, dt *depTree, isMak
// //
// For Aur dependencies depends, makedepends and checkdepends are resolved but // For Aur dependencies depends, makedepends and checkdepends are resolved but
// for repo packages only depends are resolved as they are prebuilt. // for repo packages only depends are resolved as they are prebuilt.
// The return will be split into three catagories: Repo, Aur and Missing. // The return will be split into three categories: Repo, Aur and Missing.
// The return is in no way ordered. This step is is just aimed at gathering the // The return is in no way ordered. This step is is just aimed at gathering the
// packages we need. // packages we need.
// //

View File

@ -566,12 +566,12 @@ func downloadPkgBuilds(pkgs []*rpc.Pkg, targets stringSet, bases map[string][]*r
return nil return nil
} }
func downloadPkgBuildsSources(pkgs []*rpc.Pkg, bases map[string][]*rpc.Pkg, incompatable stringSet) (err error) { func downloadPkgBuildsSources(pkgs []*rpc.Pkg, bases map[string][]*rpc.Pkg, incompatible stringSet) (err error) {
for _, pkg := range pkgs { for _, pkg := range pkgs {
dir := filepath.Join(config.BuildDir, pkg.PackageBase) dir := filepath.Join(config.BuildDir, pkg.PackageBase)
args := []string{"--verifysource", "-Ccf"} args := []string{"--verifysource", "-Ccf"}
if incompatable.get(pkg.PackageBase) { if incompatible.get(pkg.PackageBase) {
args = append(args, "--ignorearch") args = append(args, "--ignorearch")
} }
@ -584,7 +584,7 @@ func downloadPkgBuildsSources(pkgs []*rpc.Pkg, bases map[string][]*rpc.Pkg, inco
return return
} }
func buildInstallPkgBuilds(pkgs []*rpc.Pkg, srcinfos map[string]*gopkg.PKGBUILD, targets stringSet, parser *arguments, bases map[string][]*rpc.Pkg, incompatable stringSet) error { func buildInstallPkgBuilds(pkgs []*rpc.Pkg, srcinfos map[string]*gopkg.PKGBUILD, targets stringSet, parser *arguments, bases map[string][]*rpc.Pkg, incompatible stringSet) error {
arch, err := alpmHandle.Arch() arch, err := alpmHandle.Arch()
if err != nil { if err != nil {
return err return err
@ -635,7 +635,7 @@ func buildInstallPkgBuilds(pkgs []*rpc.Pkg, srcinfos map[string]*gopkg.PKGBUILD,
} else { } else {
args := []string{"-Ccf", "--noconfirm"} args := []string{"-Ccf", "--noconfirm"}
if incompatable.get(pkg.PackageBase) { if incompatible.get(pkg.PackageBase) {
args = append(args, "--ignorearch") args = append(args, "--ignorearch")
} }

View File

@ -613,7 +613,7 @@ func (parser *arguments) parseCommandLine() (err error) {
//supports negation: ^1 ^1-4 //supports negation: ^1 ^1-4
// //
//include and excule holds numbers that should be added and should not be added //include and excule holds numbers that should be added and should not be added
//respectively. other holds anythign that can't be parsed as an int. This is //respectively. other holds anything that can't be parsed as an int. This is
//intended to allow words inside of number menus. e.g. 'all' 'none' 'abort' //intended to allow words inside of number menus. e.g. 'all' 'none' 'abort'
//of course the implementation is up to the caller, this function mearley parses //of course the implementation is up to the caller, this function mearley parses
//the input and organizes it //the input and organizes it