Skip to content

Commit c8cbdf5

Browse files
committed
Fix others 'should end with a period' errors
1 parent 247514f commit c8cbdf5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

config.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ func (c *Config) Options() serpent.OptionSet {
172172
Description: `ForceSafe ignores any filesystem safety checks.
173173
This could cause serious harm to your system!
174174
This is used in cases where bypass is needed
175-
to unblock customers!`,
175+
to unblock customers.`,
176176
},
177177
{
178178
Name: "Insecure",
@@ -207,7 +207,7 @@ func (c *Config) Options() serpent.OptionSet {
207207
Env: "GIT_URL",
208208
Value: serpent.StringOf(&c.GitURL),
209209
Description: `GitURL is the URL of the Git repository to clone.
210-
This is optional!`,
210+
This is optional.`,
211211
},
212212
{
213213
Name: "Git Clone Depth",
@@ -228,28 +228,28 @@ func (c *Config) Options() serpent.OptionSet {
228228
Env: "GIT_USERNAME",
229229
Value: serpent.StringOf(&c.GitUsername),
230230
Description: `GitUsername is the username to use for Git authentication.
231-
This is optional!`,
231+
This is optional.`,
232232
},
233233
{
234234
Name: "Git Password",
235235
Env: "GIT_PASSWORD",
236236
Value: serpent.StringOf(&c.GitPassword),
237237
Description: `GitPassword is the password to use for Git authentication.
238-
This is optional!`,
238+
This is optional.`,
239239
},
240240
{
241241
Name: "Git HTTP Proxy URL",
242242
Env: "GIT_HTTP_PROXY_URL",
243243
Value: serpent.StringOf(&c.GitHTTPProxyURL),
244244
Description: `GitHTTPProxyURL is the url for the http proxy.
245-
This is optional!`,
245+
This is optional.`,
246246
},
247247
{
248248
Name: "Workspace Folder",
249249
Env: "WORKSPACE_FOLDER",
250250
Value: serpent.StringOf(&c.WorkspaceFolder),
251251
Description: `WorkspaceFolder is the path to the workspace folder
252-
that will be built. This is optional!`,
252+
that will be built. This is optional.`,
253253
},
254254
{
255255
Name: "SSL Cert Base64",

0 commit comments

Comments
 (0)