Split a long line in a comment in {Java, JavaScript, C++} language versions, without changing wording.

This commit is contained in:
Project Nayuki 2017-08-31 20:19:17 +00:00
parent 1d5ceab068
commit dfe960aa60
3 changed files with 6 additions and 3 deletions

View File

@ -110,7 +110,8 @@ class QrSegment final {
/*
* Returns a segment representing an Extended Channel Interpretation (ECI) designator with the given assignment value.
* Returns a segment representing an Extended Channel Interpretation
* (ECI) designator with the given assignment value.
*/
public: static QrSegment makeEci(long assignVal);

View File

@ -131,7 +131,8 @@ public final class QrSegment {
/**
* Returns a segment representing an Extended Channel Interpretation (ECI) designator with the specified assignment value.
* Returns a segment representing an Extended Channel Interpretation
* (ECI) designator with the specified assignment value.
* @param assignVal the ECI assignment number (see the AIM ECI specification)
* @return a segment containing the data
* @throws IllegalArgumentException if the value is outside the range [0, 10<sup>6</sup>)

View File

@ -823,7 +823,8 @@ var qrcodegen = new function() {
/*
* Returns a segment representing an Extended Channel Interpretation (ECI) designator with the given assignment value.
* Returns a segment representing an Extended Channel Interpretation
* (ECI) designator with the given assignment value.
*/
this.QrSegment.makeEci = function(assignVal) {
var bb = new BitBuffer();