From 147e7c22933cae45c32dd12965b3ca4480eb487b Mon Sep 17 00:00:00 2001 From: miampf Date: Wed, 31 Jan 2024 14:22:40 +0100 Subject: [PATCH] add period to comments --- .../internal/provider/cluster_resource.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform-provider-constellation/internal/provider/cluster_resource.go b/terraform-provider-constellation/internal/provider/cluster_resource.go index db88d9712c..35c682a44d 100644 --- a/terraform-provider-constellation/internal/provider/cluster_resource.go +++ b/terraform-provider-constellation/internal/provider/cluster_resource.go @@ -1241,19 +1241,19 @@ type tfContextLogger struct { } // Debug takes a format string and arguments as an input and logs -// them using tflog.Debug +// them using tflog.Debug. func (l *tfContextLogger) Debug(format string, args ...any) { tflog.Debug(l.ctx, fmt.Sprintf(format, args...)) } // Info takes a format string and arguments as an input and logs -// them using tflog.Info +// them using tflog.Info. func (l *tfContextLogger) Info(format string, args ...any) { tflog.Info(l.ctx, fmt.Sprintf(format, args...)) } // Warn takes a format string and arguments as an input and logs -// them using tflog.Warn +// them using tflog.Warn. func (l *tfContextLogger) Warn(format string, args ...any) { tflog.Warn(l.ctx, fmt.Sprintf(format, args...)) }