Skip to content

Commit d6b5cc9

Browse files
minor fixes
1 parent 2e68d9f commit d6b5cc9

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ This project is mainly written in Golang. If you want to contribute code:
10601060
5. Build the project, e.g. via `go build -o devspace[.exe]`
10611061
6. Evaluate and test your changes `./devspace [SOME_COMMAND]`
10621062

1063-
See [Contributing Guideslines](CONTRIBUTING.md) for more information.
1063+
See [Contributing Guidelines](CONTRIBUTING.md) for more information.
10641064

10651065
<br>
10661066

e2e/framework/helper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func ExpectError(err error, explain ...interface{}) {
2828
gomega.ExpectWithOffset(1, err).To(gomega.HaveOccurred(), explain...)
2929
}
3030

31-
// ExpectMatchError expects an error happens and has a message matching the given string, otherwise an exception raises
31+
// ExpectErrorMatch ExpectMatchError expects an error happens and has a message matching the given string, otherwise an exception raises
3232
func ExpectErrorMatch(err error, msg string, explain ...interface{}) {
3333
gomega.ExpectWithOffset(1, err).To(gomega.HaveOccurred(), explain...)
3434
gomega.ExpectWithOffset(1, err, explain...).To(gomega.MatchError(msg), explain...)

helper/util/joint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (s *StdStreamJoint) RemoteAddr() net.Addr {
5858
return s.remote
5959
}
6060

61-
// Read impements interface
61+
// Read implements interface
6262
func (s *StdStreamJoint) Read(b []byte) (n int, err error) {
6363
return s.in.Read(b)
6464
}

pkg/devspace/pipeline/types/pipeline.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type Pipeline interface {
4444
// DependencyRegistry retrieves the dependency registry
4545
DependencyRegistry() registry.DependencyRegistry
4646

47-
// Parent retrieves the pipeline parent or nil if there is non
47+
// Parent retrieves the pipeline parent or nil if there is none
4848
Parent() Pipeline
4949

5050
// Exclude locks the upmost parent pipeline in the namespace and ensures only

pkg/devspace/plugin/hook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ func CallPluginExecutableInBackground(main string, argv []string, extraEnvVars m
270270
prog.Stderr = stderrOut
271271
if err := prog.Start(); err != nil {
272272
if strings.Contains(err.Error(), "no such file or directory") {
273-
return fmt.Errorf("the plugin's binary was not found (%v). Please uninstall and reinstall the plugin and make sure there are no other conflicting plugins installed (run 'devspace list plugins' to see all installed plugins)", err)
273+
return fmt.Errorf("the plugin's binary was not found (%v). Please reinstall the plugin and make sure there are no other conflicting plugins installed (run 'devspace list plugins' to see all installed plugins)", err)
274274
}
275275

276276
return err

pkg/util/command/command.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ import (
1212
"time"
1313
)
1414

15-
// streamCommand is the a command whose output is streamed to a log
15+
// streamCommand is the command whose output is streamed to a log
1616
type streamCommand struct {
1717
cmd *exec.Cmd
1818
killTimeout time.Duration
1919
}
2020

21-
// newStreamCommand creates a new stram command
21+
// newStreamCommand creates a new stream command
2222
func newStreamCommand(command string, args []string) *streamCommand {
2323
return &streamCommand{
2424
cmd: exec.Command(command, args...),

0 commit comments

Comments
 (0)