From 80797f449eb3b33164688fc40aef107e6d68ad9c Mon Sep 17 00:00:00 2001 From: Project Nayuki Date: Sat, 23 Jun 2018 16:21:40 +0000 Subject: [PATCH] Tweaked pluralization in section comments, in multiple languages. --- cpp/QrCode.hpp | 2 +- java/io/nayuki/qrcodegen/QrCode.java | 2 +- rust/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/QrCode.hpp b/cpp/QrCode.hpp index acc4fdd..e843bdf 100644 --- a/cpp/QrCode.hpp +++ b/cpp/QrCode.hpp @@ -120,7 +120,7 @@ class QrCode final { - /*---- Constructors ----*/ + /*---- Constructor ----*/ /* * Creates a new QR Code symbol with the given version number, error correction level, binary data array, diff --git a/java/io/nayuki/qrcodegen/QrCode.java b/java/io/nayuki/qrcodegen/QrCode.java index 2b2344d..d1542fe 100644 --- a/java/io/nayuki/qrcodegen/QrCode.java +++ b/java/io/nayuki/qrcodegen/QrCode.java @@ -194,7 +194,7 @@ public final class QrCode { - /*---- Constructors ----*/ + /*---- Constructor ----*/ /** * Creates a new QR Code symbol with the specified version number, error correction level, binary data array, and mask number. diff --git a/rust/src/lib.rs b/rust/src/lib.rs index af90c6c..c04333b 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -163,7 +163,7 @@ impl QrCode { } - /*---- Constructors ----*/ + /*---- Constructor ----*/ // Creates a new QR Code symbol with the given version number, error correction level, // binary data array, and mask number. This is a cumbersome low-level constructor that