From bedc8a6ea55af69eea382bb802b0b199bf1c9fad Mon Sep 17 00:00:00 2001 From: Daniel Anderson Date: Fri, 12 Apr 2019 13:16:23 -0400 Subject: [PATCH] Documentation update to MessageSizeEstimator (#9034) Motivation: Did not understand the context of "ca". Modification: Clarified "CA" to "approximately". Result: Fixes #9031 --- .../src/main/java/io/netty/channel/MessageSizeEstimator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transport/src/main/java/io/netty/channel/MessageSizeEstimator.java b/transport/src/main/java/io/netty/channel/MessageSizeEstimator.java index 5c84927781a..92f164dc5d5 100644 --- a/transport/src/main/java/io/netty/channel/MessageSizeEstimator.java +++ b/transport/src/main/java/io/netty/channel/MessageSizeEstimator.java @@ -16,8 +16,8 @@ package io.netty.channel; /** - * Responsible to estimate size of a message. The size represent how much memory the message will ca. reserve in - * memory. + * Responsible to estimate the size of a message. The size represents approximately how much memory the message will + * reserve in memory. */ public interface MessageSizeEstimator {