Updated wording of documentation comments in {C++, JavaScript, Python} versions - changed the word "specified" to "given" for consistency.
This commit is contained in:
parent
26caba3572
commit
b2e7844a94
|
@ -85,8 +85,8 @@ public:
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Returns a QR Code symbol representing the specified data segments with the specified encoding parameters.
|
* Returns a QR Code symbol representing the given data segments with the given encoding parameters.
|
||||||
* The smallest possible QR Code version within the specified range is automatically chosen for the output.
|
* The smallest possible QR Code version within the given range is automatically chosen for the output.
|
||||||
* This function allows the user to create a custom sequence of segments that switches
|
* This function allows the user to create a custom sequence of segments that switches
|
||||||
* between modes (such as alphanumeric and binary) to encode text more efficiently.
|
* between modes (such as alphanumeric and binary) to encode text more efficiently.
|
||||||
* This function is considered to be lower level than simply encoding text or binary data.
|
* This function is considered to be lower level than simply encoding text or binary data.
|
||||||
|
|
|
@ -561,8 +561,8 @@ var qrcodegen = new function() {
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Returns a QR Code symbol representing the specified data segments with the specified encoding parameters.
|
* Returns a QR Code symbol representing the given data segments with the given encoding parameters.
|
||||||
* The smallest possible QR Code version within the specified range is automatically chosen for the output.
|
* The smallest possible QR Code version within the given range is automatically chosen for the output.
|
||||||
* This function allows the user to create a custom sequence of segments that switches
|
* This function allows the user to create a custom sequence of segments that switches
|
||||||
* between modes (such as alphanumeric and binary) to encode text more efficiently.
|
* between modes (such as alphanumeric and binary) to encode text more efficiently.
|
||||||
* This function is considered to be lower level than simply encoding text or binary data.
|
* This function is considered to be lower level than simply encoding text or binary data.
|
||||||
|
|
|
@ -89,8 +89,8 @@ class QrCode(object):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def encode_segments(segs, ecl, minversion=1, maxversion=40, mask=-1, boostecl=True):
|
def encode_segments(segs, ecl, minversion=1, maxversion=40, mask=-1, boostecl=True):
|
||||||
"""Returns a QR Code symbol representing the specified data segments with the specified encoding parameters.
|
"""Returns a QR Code symbol representing the given data segments with the given encoding parameters.
|
||||||
The smallest possible QR Code version within the specified range is automatically chosen for the output.
|
The smallest possible QR Code version within the given range is automatically chosen for the output.
|
||||||
This function allows the user to create a custom sequence of segments that switches
|
This function allows the user to create a custom sequence of segments that switches
|
||||||
between modes (such as alphanumeric and binary) to encode text more efficiently.
|
between modes (such as alphanumeric and binary) to encode text more efficiently.
|
||||||
This function is considered to be lower level than simply encoding text or binary data."""
|
This function is considered to be lower level than simply encoding text or binary data."""
|
||||||
|
|
Loading…
Reference in New Issue