Merge pull request #9 from github/liveshare-spelling

spell Live Share product name correctly in UI
This commit is contained in:
Alan Donovan 2021-08-31 17:30:19 -04:00 committed by GitHub
commit 9964a444b0
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ func (c *Client) Join(ctx context.Context) (err error) {
_, err = c.joinWorkspace(ctx)
if err != nil {
return fmt.Errorf("error joining liveshare workspace: %v", err)
return fmt.Errorf("error joining Live Share workspace: %v", err)
}
return nil

View file

@ -75,7 +75,7 @@ func TestClientJoin(t *testing.T) {
livesharetest.WithRelaySAS(connection.RelaySAS),
)
if err != nil {
t.Errorf("error creating liveshare server: %v", err)
t.Errorf("error creating Live Share server: %v", err)
}
defer server.Close()
connection.RelayEndpoint = "sb" + strings.TrimPrefix(server.URL(), "https")