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.