From 028b3774725e46b2b89c007baaebf3b01ae66e1d Mon Sep 17 00:00:00 2001 From: Project Nayuki Date: Fri, 5 Oct 2018 00:30:10 +0000 Subject: [PATCH] Updated a section comment in class QrCode, in most languages. --- cpp/QrCode.hpp | 2 +- java/io/nayuki/qrcodegen/QrCode.java | 2 +- python/qrcodegen.py | 2 +- rust/src/lib.rs | 2 +- typescript/qrcodegen.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cpp/QrCode.hpp b/cpp/QrCode.hpp index 3166edd..a9caf80 100644 --- a/cpp/QrCode.hpp +++ b/cpp/QrCode.hpp @@ -223,7 +223,7 @@ class QrCode final { - /*---- Private static helper functions ----*/ + /*---- Private helper functions ----*/ // Returns an ascending list of positions of alignment patterns for this version number. // Each position is in the range [0,177), and are used on both the x and y axes. diff --git a/java/io/nayuki/qrcodegen/QrCode.java b/java/io/nayuki/qrcodegen/QrCode.java index d8f601e..e63b6ee 100644 --- a/java/io/nayuki/qrcodegen/QrCode.java +++ b/java/io/nayuki/qrcodegen/QrCode.java @@ -634,7 +634,7 @@ public final class QrCode { - /*---- Private static helper functions ----*/ + /*---- Private helper functions ----*/ // Returns an ascending list of positions of alignment patterns for this version number. // Each position is in the range [0,177), and are used on both the x and y axes. diff --git a/python/qrcodegen.py b/python/qrcodegen.py index f02e5af..b4238b4 100644 --- a/python/qrcodegen.py +++ b/python/qrcodegen.py @@ -482,7 +482,7 @@ class QrCode(object): return result - # ---- Private static helper functions ---- + # ---- Private helper functions ---- def _get_alignment_pattern_positions(self): """Returns an ascending list of positions of alignment patterns for this version number. diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 05b96ee..1821946 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -618,7 +618,7 @@ impl QrCode { } - /*---- Private static helper functions ----*/ + /*---- Private helper functions ----*/ // Returns an ascending list of positions of alignment patterns for this version number. // Each position is in the range [0,177), and are used on both the x and y axes. diff --git a/typescript/qrcodegen.ts b/typescript/qrcodegen.ts index 6deaaea..2353ce1 100644 --- a/typescript/qrcodegen.ts +++ b/typescript/qrcodegen.ts @@ -559,7 +559,7 @@ namespace qrcodegen { } - /*-- Private static helper functions QrCode --*/ + /*-- Private helper functions --*/ // Returns an ascending list of positions of alignment patterns for this version number. // Each position is in the range [0,177), and are used on both the x and y axes.