Skip to content

Commit

Permalink
Remove extra slash in comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
clundin25 committed Dec 7, 2022
1 parent b969b37 commit 05ee335
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ func (c *Connection) Close() error {
return werr
}

// / If ECP Logging is enabled return true
// / Otherwise return false
// If ECP Logging is enabled return true
// Otherwise return false
func enableECPLogging() bool {
if os.Getenv("ENABLE_ENTERPRISE_CERTIFICATE_LOGS") != "" {
return true
Expand Down
4 changes: 2 additions & 2 deletions cshared/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"github.com/googleapis/enterprise-certificate-proxy/client"
)

// / If ECP Logging is enabled return true
// / Otherwise return false
// If ECP Logging is enabled return true
// Otherwise return false
func enableECPLogging() bool {
if os.Getenv("ENABLE_ENTERPRISE_CERTIFICATE_LOGS") != "" {
return true
Expand Down
4 changes: 2 additions & 2 deletions internal/signer/darwin/signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (
"time"
)

// / If ECP Logging is enabled return true
// / Otherwise return false
// If ECP Logging is enabled return true
// Otherwise return false
func enableECPLogging() bool {
if os.Getenv("ENABLE_ENTERPRISE_CERTIFICATE_LOGS") != "" {
return true
Expand Down
4 changes: 2 additions & 2 deletions internal/signer/linux/signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (
"time"
)

// / If ECP Logging is enabled return true
// / Otherwise return false
// If ECP Logging is enabled return true
// Otherwise return false
func enableECPLogging() bool {
if os.Getenv("ENABLE_ENTERPRISE_CERTIFICATE_LOGS") != "" {
return true
Expand Down
4 changes: 2 additions & 2 deletions internal/signer/windows/signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (
"time"
)

// / If ECP Logging is enabled return true
// / Otherwise return false
// If ECP Logging is enabled return true
// Otherwise return false
func enableECPLogging() bool {
if os.Getenv("ENABLE_ENTERPRISE_CERTIFICATE_LOGS") != "" {
return true
Expand Down

0 comments on commit 05ee335

Please sign in to comment.