Skip to content

Commit

Permalink
change string quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeseda committed Jan 18, 2024
1 parent 8c54589 commit 963db37
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/commands/env/create/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@ module.exports = {
},
{
name: '-v, --value',
description: `Env variable value`,
description: 'Env variable value',
},
],
},
examples: [
{
name: `Create a variable named 'FOO' in 'staging'`,
example: `begin env create --env staging --name FOO --value "bar"`,
name: "Create a variable named 'FOO' in 'staging'",
example: 'begin env create --env staging --name FOO --value "bar"',
},
{
name: `Create a variable named 'FOO' in 'staging' with escaped special characters (Mac/Linux)`,
example: `begin env create --env staging --name FOO --value "bar\\!"`,
name: "Create a variable named 'FOO' in 'staging' with escaped special characters (Mac/Linux)",
example: 'begin env create --env staging --name FOO --value "bar\\!"',
},
{
name: `Create a variable named 'FOO' in 'staging' with special characters (Windows)`,
example: `begin env create --env staging --name FOO --value "bar!"`,
name: "Create a variable named 'FOO' in 'staging' with special characters (Windows)",
example: 'begin env create --env staging --name FOO --value "bar!"',
},
]
}
Expand Down

0 comments on commit 963db37

Please sign in to comment.