Skip to content

Commit 31e9e8e

Browse files
author
Massimiliano Pippi
committed
s/ouput/output
1 parent c8b77e8 commit 31e9e8e

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

cli/board/details.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func runDetailsCommand(cmd *cobra.Command, args []string) {
5454
feedback.PrintResult(detailsResult{details: res})
5555
}
5656

57-
// ouput from this command requires special formatting, let's create a dedicated
57+
// output from this command requires special formatting, let's create a dedicated
5858
// feedback.Result implementation
5959
type detailsResult struct {
6060
details *rpc.BoardDetailsResp

cli/board/list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func runListCommand(cmd *cobra.Command, args []string) {
7070
feedback.PrintResult(result{ports})
7171
}
7272

73-
// ouput from this command requires special formatting, let's create a dedicated
73+
// output from this command requires special formatting, let's create a dedicated
7474
// feedback.Result implementation
7575
type result struct {
7676
ports []*rpc.DetectedPort

cli/board/listall.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func runListAllCommand(cmd *cobra.Command, args []string) {
6060
feedback.PrintResult(resultAll{list})
6161
}
6262

63-
// ouput from this command requires special formatting, let's create a dedicated
63+
// output from this command requires special formatting, let's create a dedicated
6464
// feedback.Result implementation
6565
type resultAll struct {
6666
list *rpc.BoardListAllResp

cli/config/dump.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var dumpCmd = &cobra.Command{
5858
Run: runDumpCommand,
5959
}
6060

61-
// ouput from this command requires special formatting, let's create a dedicated
61+
// output from this command requires special formatting, let's create a dedicated
6262
// feedback.Result implementation
6363
type dumpResult struct {
6464
structured *jsonConfig

cli/core/list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func runListCommand(cmd *cobra.Command, args []string) {
6161
feedback.PrintResult(installedResult{platforms})
6262
}
6363

64-
// ouput from this command requires special formatting, let's create a dedicated
64+
// output from this command requires special formatting, let's create a dedicated
6565
// feedback.Result implementation
6666
type installedResult struct {
6767
platforms []*cores.PlatformRelease

cli/core/search.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func runSearchCommand(cmd *cobra.Command, args []string) {
6363
feedback.PrintResult(searchResults{coreslist})
6464
}
6565

66-
// ouput from this command requires special formatting, let's create a dedicated
66+
// output from this command requires special formatting, let's create a dedicated
6767
// feedback.Result implementation
6868
type searchResults struct {
6969
platforms []*rpc.Platform

cli/lib/list.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func runListCommand(cmd *cobra.Command, args []string) {
7070
logrus.Info("Done")
7171
}
7272

73-
// ouput from this command requires special formatting, let's create a dedicated
73+
// output from this command requires special formatting, let's create a dedicated
7474
// feedback.Result implementation
7575
type installedResult struct {
7676
installedLibs []*rpc.InstalledLibrary

cli/lib/search.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func runSearchCommand(cmd *cobra.Command, args []string) {
7171
logrus.Info("Done")
7272
}
7373

74-
// ouput from this command requires special formatting, let's create a dedicated
74+
// output from this command requires special formatting, let's create a dedicated
7575
// feedback.Result implementation
7676
type result struct {
7777
results *rpc.LibrarySearchResp

test/test_lib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_list(run_command):
1919
# Init the environment explicitly
2020
assert run_command("core update-index")
2121

22-
# When ouput is empty, nothing is printed out, no matter the output format
22+
# When output is empty, nothing is printed out, no matter the output format
2323
result = run_command("lib list")
2424
assert result.ok
2525
assert "" == result.stderr

0 commit comments

Comments
 (0)