From ea4b3c6082c445029edf0d417d453827c6897c6a Mon Sep 17 00:00:00 2001 From: Sree Kuchibhotla Date: Mon, 7 Dec 2015 16:10:10 -0800 Subject: [PATCH] Fix a typo in comment --- test/core/support/slice_buffer_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/support/slice_buffer_test.c b/test/core/support/slice_buffer_test.c index 078d89dfbe9..cf2da84c2bb 100644 --- a/test/core/support/slice_buffer_test.c +++ b/test/core/support/slice_buffer_test.c @@ -102,7 +102,7 @@ void test_slice_buffer_move_first() { GPR_ASSERT(src.length == src_len); GPR_ASSERT(dst.length == dst_len); - /* src now has two slices ["bb"] and ["cccc"] */ + /* src now has two slices ["bbb"] and ["ccc"] */ /* Case 2: Move the first slice from src to dst */ gpr_slice_buffer_move_first(&src, 3, &dst); src_len -= 3;