aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/lb_policy/round_robin/round_robin.c
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-06-03 13:12:30 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2016-06-03 13:12:30 -0700
commit23bb526710e5c95b121908835703525709325ee0 (patch)
tree9e4d81fcd81c167e8711a6eb698b6fbe2edd9182 /src/core/ext/lb_policy/round_robin/round_robin.c
parent020087035bbaea4f414a5bd25bb820fd52d5ec78 (diff)
fixed typo
Diffstat (limited to 'src/core/ext/lb_policy/round_robin/round_robin.c')
-rw-r--r--src/core/ext/lb_policy/round_robin/round_robin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ext/lb_policy/round_robin/round_robin.c b/src/core/ext/lb_policy/round_robin/round_robin.c
index a73ab0a4a6..d7870992f7 100644
--- a/src/core/ext/lb_policy/round_robin/round_robin.c
+++ b/src/core/ext/lb_policy/round_robin/round_robin.c
@@ -34,8 +34,8 @@
/** Round Robin Policy.
*
* This policy keeps:
- * - A circular list of ready (connected) subchannels, the
- * *readylist*. An empty readylist consists solely of its root (dummy) node.
+ * - A circular list of ready (connected) subchannels, the *readylist*. An empty
+ * readylist consists solely of its root (dummy) node.
* - A pointer to the last element picked from the readylist, the *lastpick*.
* Initially set to point to the readylist's root.
*
@@ -54,7 +54,7 @@
* readylist only had one element, this is still legal, as the lastpick would
* point to the dummy root node, for an empty readylist.
* - Upon picking, *lastpick* is updated to point to the returned (connected)
- * subchannel. Note that it possible that the selected subchannel becomes
+ * subchannel. Note that it's possible that the selected subchannel becomes
* disconnected in the interim between the selection and the actual usage of
* the subchannel by the caller.
*/