Browse Source

Fix repetitive comment.

Tom Harwood 11 năm trước cách đây
mục cha
commit
975ff6bfa4
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      encoder.go

+ 4 - 4
encoder.go

@@ -31,10 +31,10 @@ import (
 // represented in all three modes, whereas alphanumeric data (e.g. 'A') can be
 // represented in alphanumeric and byte mode.
 //
-// The cost to start a new segment (to use a different Data Mode) has a cost,
-// the bits to state the new segment Data Mode and length. To minimise each QR
-// Code's symbol size, an optimisation routine coalesces segment types
-// where possible, to reduce the encoded data length.
+// Starting a new segment (to use a different Data Mode) has a cost, the bits to
+// state the new segment Data Mode and length. To minimise each QR Code's symbol
+// size, an optimisation routine coalesces segment types where possible, to
+// reduce the encoded data length.
 //
 // There are several other data modes available (e.g. Kanji mode) which are not
 // implemented here.