From 7d05ab564e7e9bcd7f18785d618b980838fe822c Mon Sep 17 00:00:00 2001 From: yuxiaobo Date: Tue, 10 Sep 2019 15:07:52 +0800 Subject: [PATCH] Grammar tweak Signed-off-by: yuxiaobo --- doc/meetups_notes/05-10-2018.md | 4 ++-- doc/meetups_notes/06-14-2018.md | 2 +- doc/meetups_notes/details.md | 2 +- go/vt/vttablet/tabletmanager/healthcheck_test.go | 10 +++++----- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/meetups_notes/05-10-2018.md b/doc/meetups_notes/05-10-2018.md index 4f9b0381055..8423c882e07 100644 --- a/doc/meetups_notes/05-10-2018.md +++ b/doc/meetups_notes/05-10-2018.md @@ -13,7 +13,7 @@ * Finish full subquery support. * Multi shard DML’s support of PR’s that are already opened. -* Getting all the docs done is too big of a project, for the next release we will go through all the pull requests that have been merged and create a release note based on that. +* Getting all the docs done is too big of a project, for the next release we will go through all the pull requests that have been merged and create a release note based on that. * Once Planet Scale has a team in place, cadence for releases should be every couple months. ### Planet scale update @@ -25,7 +25,7 @@ ### Kubecon update from Sugu: -* It was awesome. Sugu presented in front of 4000 people. +* It was awesome. Sugu presented in front of 4000 people. * Most people have heard about vitess before, but didn’t know exactly what vitess does. After Sugu’s presentation they do! * Documentation keeps being a big debt on the project. Some ideas that were discussed: diff --git a/doc/meetups_notes/06-14-2018.md b/doc/meetups_notes/06-14-2018.md index cb174fd8a88..b207eb2d5db 100644 --- a/doc/meetups_notes/06-14-2018.md +++ b/doc/meetups_notes/06-14-2018.md @@ -25,7 +25,7 @@ Or iPhone one-tap : Or join by phone: - Dial(for higher quality, dial a number based on your current location): + Dial(for higher quality, dial a number based on your current location): US: +1 646 558 8656 or +1 669 900 6833 or +1 877 369 0926 (Toll Free) or +1 877 853 5247 (Toll Free) +1 855 703 8985 (Canada Toll-Free) diff --git a/doc/meetups_notes/details.md b/doc/meetups_notes/details.md index 1c67224dd25..643d8f619d3 100644 --- a/doc/meetups_notes/details.md +++ b/doc/meetups_notes/details.md @@ -20,7 +20,7 @@ Or iPhone one-tap : Or other phone: -Dial(for higher quality, dial a number based on your current location): +Dial(for higher quality, dial a number based on your current location): US: +1 669 900 6833 or +1 646 558 8656 or +1 877 853 5247 (Toll Free) or +1 877 369 0926 (Toll Free) Canada: +1 855 703 8985 (Canada Toll-Free) diff --git a/go/vt/vttablet/tabletmanager/healthcheck_test.go b/go/vt/vttablet/tabletmanager/healthcheck_test.go index 5f59d0e6173..a499fc1f03e 100644 --- a/go/vt/vttablet/tabletmanager/healthcheck_test.go +++ b/go/vt/vttablet/tabletmanager/healthcheck_test.go @@ -173,7 +173,7 @@ func TestHealthCheckControlsQueryService(t *testing.T) { ctx := context.Background() agent := createTestAgent(ctx, t, nil) - /// Consume the first health broadcast triggered by ActionAgent.Start(): + // Consume the first health broadcast triggered by ActionAgent.Start(): // (REPLICA, NOT_SERVING) goes to (REPLICA, SERVING). And we // should be serving. if _, err := expectBroadcastData(agent.QueryServiceControl, true, "healthcheck not run yet", 0); err != nil { @@ -281,7 +281,7 @@ func TestErrSlaveNotRunningIsHealthy(t *testing.T) { ctx := context.Background() agent := createTestAgent(ctx, t, nil) - /// Consume the first health broadcast triggered by ActionAgent.Start(): + // Consume the first health broadcast triggered by ActionAgent.Start(): // (REPLICA, NOT_SERVING) goes to (REPLICA, SERVING). And we // should be serving. if _, err := expectBroadcastData(agent.QueryServiceControl, true, "healthcheck not run yet", 0); err != nil { @@ -390,7 +390,7 @@ func TestQueryServiceStopped(t *testing.T) { ctx := context.Background() agent := createTestAgent(ctx, t, nil) - /// Consume the first health broadcast triggered by ActionAgent.Start(): + // Consume the first health broadcast triggered by ActionAgent.Start(): // (REPLICA, NOT_SERVING) goes to (REPLICA, SERVING). And we // should be serving. if _, err := expectBroadcastData(agent.QueryServiceControl, true, "healthcheck not run yet", 0); err != nil { @@ -488,7 +488,7 @@ func TestTabletControl(t *testing.T) { ctx := context.Background() agent := createTestAgent(ctx, t, nil) - /// Consume the first health broadcast triggered by ActionAgent.Start(): + // Consume the first health broadcast triggered by ActionAgent.Start(): // (REPLICA, NOT_SERVING) goes to (REPLICA, SERVING). And we // should be serving. if _, err := expectBroadcastData(agent.QueryServiceControl, true, "healthcheck not run yet", 0); err != nil { @@ -691,7 +691,7 @@ func TestStateChangeImmediateHealthBroadcast(t *testing.T) { ctx := context.Background() agent := createTestAgent(ctx, t, nil) - /// Consume the first health broadcast triggered by ActionAgent.Start(): + // Consume the first health broadcast triggered by ActionAgent.Start(): // (REPLICA, NOT_SERVING) goes to (REPLICA, SERVING). And we // should be serving. if _, err := expectBroadcastData(agent.QueryServiceControl, true, "healthcheck not run yet", 0); err != nil {