diff options
author | Hope Casey-Allen <hcaseyal@google.com> | 2018-05-25 09:58:49 -0700 |
---|---|---|
committer | Hope Casey-Allen <hcaseyal@google.com> | 2018-05-25 09:58:49 -0700 |
commit | f88354dc827d59f55f6850e43814622a7b8de4e5 (patch) | |
tree | e380020a02932cec75a43798c12a558353322f63 | |
parent | 02bb860db2df84160816657babe18c92f62f1c42 (diff) |
Fix comment for init_channel_elem to refer to elem->channel_data, not elem->call_data
-rw-r--r-- | src/core/lib/channel/channel_stack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/channel/channel_stack.h b/src/core/lib/channel/channel_stack.h index 4bf8218664..7581f937b6 100644 --- a/src/core/lib/channel/channel_stack.h +++ b/src/core/lib/channel/channel_stack.h @@ -138,7 +138,7 @@ typedef struct { is_first, is_last designate this elements position in the stack, and are useful for asserting correct configuration by upper layer code. The filter does not need to do any chaining. - Implementations may assume that elem->call_data is all zeros. */ + Implementations may assume that elem->channel_data is all zeros. */ grpc_error* (*init_channel_elem)(grpc_channel_element* elem, grpc_channel_element_args* args); /* Destroy per channel data. |