From b04724a072d956db1f84a8f5db0afa0dbb158e96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Muhammed=20Can=20K=C3=BC=C3=A7=C3=BCkaslan?= <32893303+Kucukaslan@users.noreply.github.com> Date: Mon, 25 Jul 2022 00:41:37 +0300 Subject: [PATCH] delete the trailing spaces --- src/bytes/reader.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bytes/reader.go b/src/bytes/reader.go index 22af0fa656..81c22aa029 100644 --- a/src/bytes/reader.go +++ b/src/bytes/reader.go @@ -30,8 +30,8 @@ func (r *Reader) Len() int { return int(int64(len(r.s)) - r.i) } -// Size returns the original length of the underlying byte slice. -// Size is the number of bytes available for reading via ReadAt. +// Size returns the original length of the underlying byte slice. +// Size is the number of bytes available for reading via ReadAt. // The result is unaffected by any method calls except Reset. func (r *Reader) Size() int64 { return int64(len(r.s)) }