Skip to content

Commit 33ad99a

Browse files
committed
📖
1 parent 0fb1995 commit 33ad99a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/Appendix/Performance-considerations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Performance considerations
22

3-
Generating a QR Code is not a trivial task - it is a combination of countless complex mathematical operations.
3+
Generating a QR Code is not a trivial task - it is a combination of countless complex mathematical operations on top of rendering the output.
44

55
This library seeks not to be the fastest QR Code generator, but instead to provide flexibility and user friendlyness,
66
which in turn comes with a slight performance cost.
@@ -12,7 +12,7 @@ The [version of the QR symbol](./Terminology.md#version) is one of the major per
1212
determines the size of the symbol and therefore the amount of data that can be stored. Iterating over the internal
1313
representation of the matrix takes more time with increasing size and the internals iterate over the matrix a LOT.
1414

15-
Because of that you want of course to select the smallest possible version for the given data, which the encoder does by default.
15+
Because of that, you want to select the smallest possible version for the given data of course, which the encoder does by default.
1616
However, sometimes the possibly varying size of the symbol may not be desired and you want to choose a fixed size, in which case
1717
you should determine the maximum size of the input data and choose a version that fits.
1818

0 commit comments

Comments
 (0)