@@ -59,7 +59,7 @@ func (a *App) ListPorts(ctx context.Context, codespaceName string, exporter cmdu
5959
6060 session , err := codespaces .ConnectToLiveshare (ctx , a , noopLogger (), a .apiClient , codespace )
6161 if err != nil {
62- return fmt .Errorf ("error connecting to Live Share : %w" , err )
62+ return fmt .Errorf ("error connecting to codespace : %w" , err )
6363 }
6464 defer safeClose (session , & err )
6565
@@ -245,7 +245,7 @@ func (a *App) UpdatePortVisibility(ctx context.Context, codespaceName string, ar
245245
246246 session , err := codespaces .ConnectToLiveshare (ctx , a , noopLogger (), a .apiClient , codespace )
247247 if err != nil {
248- return fmt .Errorf ("error connecting to Live Share : %w" , err )
248+ return fmt .Errorf ("error connecting to codespace : %w" , err )
249249 }
250250 defer safeClose (session , & err )
251251
@@ -321,7 +321,7 @@ func (a *App) ForwardPorts(ctx context.Context, codespaceName string, ports []st
321321
322322 session , err := codespaces .ConnectToLiveshare (ctx , a , noopLogger (), a .apiClient , codespace )
323323 if err != nil {
324- return fmt .Errorf ("error connecting to Live Share : %w" , err )
324+ return fmt .Errorf ("error connecting to codespace : %w" , err )
325325 }
326326 defer safeClose (session , & err )
327327
0 commit comments