Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor code formatting #221

Merged
merged 1 commit into from
Jul 26, 2024
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
6 changes: 3 additions & 3 deletions pkg/cmd/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,7 @@ var stopClusterCmd = &cobra.Command{
},
}

// startConsoleCmd represents the start console command
// startConsoleCmd represents the start console command.
var startConsoleCmd = &cobra.Command{
Use: "console",
Short: "start a console client against a cluster that was manually created",
Expand All @@ -1224,7 +1224,7 @@ cluster using the current context or a cluster specified by using '-c'.`,
},
}

// startCohQL represents the start cohql command
// startCohQL represents the start cohql command.
var startCohQLCmd = &cobra.Command{
Use: "cohql",
Short: "start a CohQL client against a cluster that was manually created",
Expand All @@ -1236,7 +1236,7 @@ cluster using the current context or a cluster specified by using '-c'..`,
},
}

// startClassCmd represents the start class command
// startClassCmd represents the start class command.
var startClassCmd = &cobra.Command{
Use: "class",
Short: "start a specific Java class against a cluster that was manually created",
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/describe.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021, 2023 Oracle and/or its affiliates.
* Copyright (c) 2021, 2024 Oracle and/or its affiliates.
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
*/
Expand All @@ -15,5 +15,5 @@ var describeCmd = &cobra.Command{
Use: "describe",
Short: "show details of a specific resource",
Long: `The 'describe' command describe various Coherence resources such as
members, machines, services, caches, proxies and http-servers.`,
members, machines, services, caches, proxies, http-servers and other Coherence resources.`,
}
Loading