go-tinyqr

An experimental minimal QR Code generator  http://go-qrcode.appspot.com
git clone https://git.ce9e.org/go-tinyqr.git

commit
975ff6bfa4f5d87c33b52147daa44b66d624cbab
parent
f7be08535c03c5ad3c9d854ea682be2a7f95d12e
Author
Tom Harwood <tfh@skip.org>
Date
2014-04-18 17:45
Fix repetitive comment.

Diffstat

M encoder.go 8 ++++----

1 files changed, 4 insertions, 4 deletions


diff --git a/encoder.go b/encoder.go

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