Skip to content

Commit fb8be9e

Browse files
committed
Updated docstrings in ASCIIQrCode
1 parent 9967c6d commit fb8be9e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

QRCoder/ASCIIQRCode.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,15 @@ public string GetGraphic(int repeatPerModule, string darkColorString = "██",
3030
throw new Exception("The repeatPerModule-parameter must be 1 or greater.");
3131
return string.Join(endOfLine, GetLineByLineGraphic(repeatPerModule, darkColorString, whiteSpaceString, drawQuietZones));
3232
}
33-
33+
3434

3535
/// <summary>
3636
/// Returns an array of strings that contains each line of the resulting QR code as ASCII chars.
3737
/// </summary>
3838
/// <param name="repeatPerModule">Number of repeated darkColorString/whiteSpaceString per module.</param>
3939
/// <param name="darkColorString">String for use as dark color modules. In case of string make sure whiteSpaceString has the same length.</param>
4040
/// <param name="whiteSpaceString">String for use as white modules (whitespace). In case of string make sure darkColorString has the same length.</param>
41+
/// <param name="drawQuietZones">Bool that defines if quiet zones around the QR code shall be drawn</param>
4142
/// <returns></returns>
4243
public string[] GetLineByLineGraphic(int repeatPerModule, string darkColorString = "██", string whiteSpaceString = " ", bool drawQuietZones = true)
4344
{

0 commit comments

Comments
 (0)