Skip to content

Commit 4668cba

Browse files
Update terminology: change 'Brev machine' to 'Brev instance' for consistency
- Update help text in create, start, stop, portforward, notebook, and scale commands - Preserve 'local machine' and 'host machine' references as they refer to user's computer - Addresses GitHub comment requesting terminology consistency Co-Authored-By: Alec Fong <[email protected]>
1 parent c9bc38e commit 4668cba

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

pkg/cmd/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
var (
20-
createLong = "Create a new Brev machine"
20+
createLong = "Create a new Brev instance"
2121
createExample = `
2222
brev create <name>
2323
`

pkg/cmd/notebook/notebook.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
var (
16-
notebookLong = "Open a notebook on your Brev machine"
16+
notebookLong = "Open a notebook on your Brev instance"
1717
notebookExample = "brev notebook <InstanceName>"
1818
)
1919

@@ -29,7 +29,7 @@ type WorkspaceResult struct {
2929
func NewCmdNotebook(store NotebookStore, _ *terminal.Terminal) *cobra.Command {
3030
cmd := &cobra.Command{
3131
Use: "notebook",
32-
Short: "Open a notebook on your Brev machine",
32+
Short: "Open a notebook on your Brev instance",
3333
Long: notebookLong,
3434
Example: notebookExample,
3535
Args: cobra.ExactArgs(2),

pkg/cmd/portforward/portforward.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
)
2020

2121
var (
22-
sshLinkLong = "Port forward your Brev machine's port to your local port"
22+
sshLinkLong = "Port forward your Brev instance's port to your local port"
2323
sshLinkExample = "brev port-forward <ws_name> -p local_port:remote_port"
2424
)
2525

@@ -145,7 +145,7 @@ func RunSSHPortForward(forwardType string, localPort string, remotePort string,
145145
func startInput(t *terminal.Terminal) string {
146146
t.Vprint(t.Yellow("\nPorts flag was omitted, running interactive mode!\n"))
147147
remoteInput := terminal.PromptGetInput(terminal.PromptContent{
148-
Label: "What port on your Brev machine would you like to forward?",
148+
Label: "What port on your Brev instance would you like to forward?",
149149
ErrorMsg: "error",
150150
})
151151
localInput := terminal.PromptGetInput(terminal.PromptContent{

pkg/cmd/scale/scale.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
var (
16-
long = "Scale your Brev instance to get a more powerful machine or save costs"
16+
long = "Scale your Brev instance to get more powerful hardware or save costs"
1717
example = `
1818
brev scale MyInstance --gpu p3.2xlarge
1919
brev scale MyInstance --cpu 2x8

pkg/cmd/start/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
var (
27-
startLong = "Start a Brev machine that's in a paused or off state or create one from a url"
27+
startLong = "Start a Brev instance that's in a paused or off state or create one from a url"
2828
startExample = `
2929
brev start <existing_ws_name>
3030
brev start <git url>

pkg/cmd/stop/stop.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
)
1717

1818
var (
19-
stopLong = "Stop a Brev machine that's in a running state"
19+
stopLong = "Stop a Brev instance that's in a running state"
2020
stopExample = "brev stop <ws_name>... \nbrev stop --all"
2121
)
2222

0 commit comments

Comments
 (0)