From ac421279fb86c5b98150394b2e87ff397694b42e Mon Sep 17 00:00:00 2001 From: Jakub Sobon Date: Sat, 19 Jan 2019 10:47:08 -0500 Subject: [PATCH] Two typos s/called/caller --- terminalapi/color_mode.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terminalapi/color_mode.go b/terminalapi/color_mode.go index d7f2feb..195f317 100644 --- a/terminalapi/color_mode.go +++ b/terminalapi/color_mode.go @@ -50,11 +50,11 @@ const ( // ColorMode216 supports only the third range of the ColorMode256, i.e the // 216 different terminal colors. However in this mode the colors are zero - // based, so the called doesn't need to provide an offset. + // based, so the caller doesn't need to provide an offset. ColorMode216 // ColorModeGrayscale supports only the fourth range of the ColorMode256, // i.e the 24 different shades of grey. However in this mode the colors are - // zero based, so the called doesn't need to provide an offset. + // zero based, so the caller doesn't need to provide an offset. ColorModeGrayscale )