X Tutup
Skip to content

Commit 0052199

Browse files
authored
Merge pull request cli#4842 from cli/gh-cs-cp-help-typo
gh cs cp --help: fix typo
2 parents 94a640b + 5fea604 commit 0052199

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cmd/codespace/ssh.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ func newCpCmd(app *App) *cobra.Command {
179179
provided by untrusted users; see <https://lwn.net/Articles/835962/> for discussion.
180180
`, "`"),
181181
Example: heredoc.Doc(`
182-
$ gh codespace cp -e README.md 'remote:/workspace/$RepositoryName/'
182+
$ gh codespace cp -e README.md 'remote:/workspaces/$RepositoryName/'
183183
$ gh codespace cp -e 'remote:~/*.go' ./gofiles/
184-
$ gh codespace cp -e 'remote:/workspace/myproj/go.{mod,sum}' ./gofiles/
184+
$ gh codespace cp -e 'remote:/workspaces/myproj/go.{mod,sum}' ./gofiles/
185185
`),
186186
RunE: func(cmd *cobra.Command, args []string) error {
187187
return app.Copy(cmd.Context(), args, opts)

0 commit comments

Comments
 (0)
X Tutup