Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export CGO_ENABLED := 0
coverage \
licenses \
snapshot \
test
test

# The help target displays a help message that includes the avialable targets
# in this `Makefile`. It is the default target if `make` is run without any
Expand All @@ -33,9 +33,9 @@ help:
@echo " test - Run test suite"
@echo ""

# The config target shows the current configured values that are enforce when
# The config target shows the current configured values that are enforced when
# any `make` target is run.
config:
config:
@echo "GOOS=${GOOS}"
@echo "GOARCH=${GOARCH}"
@echo "CGO_ENABLED=${CGO_ENABLED}"
Expand All @@ -54,7 +54,7 @@ coverage:
@scripts/test.sh coverage

# The licenses target is used to make sure that all source code files have the
# appropriate license header in them. It will also generate a license file
# appropriate license header in them. It will also generate a license file
# that includes all of the applicable licenses for any 3rd party libraries that
# have been included in this project. To use this target, you must have the
# `go-licenses` tool installed and available in your path. See
Expand Down Expand Up @@ -84,7 +84,7 @@ build: install
-o bin/ipctl \
-ldflags="-X 'github.com/itential/ipctl/internal/metadata.Build=$$(git rev-parse --short HEAD)' -X 'github.com/itential/ipctl/internal/metadata.Version=$$(git tag | sort -V | tail -1)'"

# The test target runs the unit tests for this project. All unit tests are
# The test target runs the unit tests for this project. All unit tests are
# based on mock data for the various services it connects to. The target
# should run without error before making any pull requests to this project.
test:
Expand Down
2 changes: 1 addition & 1 deletion cmd/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func platformCommands(r handlers.Runtime, id string) []*cobra.Command {
})
}

// dataserCommands provide a set of commands for performing batch operations on
// datasetCommands provide a set of commands for performing batch operations on
// specific asset types
func datasetCommands(r handlers.Runtime, id string) []*cobra.Command {
h := handlers.NewHandler(r)
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func loadCommands(cmd *cobra.Command, runtime handlers.Runtime) {
addRootCommand(cmd, runtime, "Plugin Commands:", pluginCommands)
}

// versionCommand is a top level command that display's the current application
// versionCommand is a top level command that displays the current application
// version.
func versionCommand() *cobra.Command {
var cmd = &cobra.Command{
Expand Down
4 changes: 2 additions & 2 deletions docs/commands-quick-reference.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Command Table

The table below provides a quick reference for that shows which commands are
support for which assets.
The table below provides a quick reference that shows which commands are
supported for which assets.

| Asset | get | describe | create | delete | copy | clear | import | export |
|------------------------------------|-----|----------|--------|--------|------|-------|--------|--------|
Expand Down
Loading