From ef9b83d3bdd5fac2379f5dcdd543b1900c46fb62 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Mon, 4 Mar 2013 15:01:49 +0100 Subject: [PATCH] Docs --- zscan.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zscan.go b/zscan.go index 4b8d736c..ccf27374 100644 --- a/zscan.go +++ b/zscan.go @@ -140,8 +140,8 @@ func ReadRR(q io.Reader, filename string) (RR, error) { // // foo. IN A 10.0.0.1 ; this is a comment // -// The text "; this is comment" is returned in Token.comment . Comments inside, -// before or after the RR are discarded. +// The text "; this is comment" is returned in Token.comment . Comments inside the +// RR are discarded. Comments on the line by themselves are discarded too. func ParseZone(r io.Reader, origin, file string) chan Token { return parseZoneHelper(r, origin, file, 10000) }