From 1d8f2218c4dca9ab08e46a9ab03521deac735b43 Mon Sep 17 00:00:00 2001 From: flip111 Date: Sat, 7 Dec 2013 10:48:17 +0100 Subject: [PATCH] Fixed some spelling issues. --- lib/RandomLib/Generator.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/RandomLib/Generator.php b/lib/RandomLib/Generator.php index 8af990a..e9c612c 100644 --- a/lib/RandomLib/Generator.php +++ b/lib/RandomLib/Generator.php @@ -32,12 +32,12 @@ class Generator { /** - * @const UPPER_CASE Flag for upper-case letters + * @const UPPER_CASE Flag for uppercase letters */ const UPPER_CASE = 1; /** - * @const LOWER_CASE Flag for loser-case letters + * @const LOWER_CASE Flag for lowercase letters */ const LOWER_CASE = 2; @@ -47,12 +47,12 @@ class Generator { const DIGITS = 4; /** - * @const UPPER_HEX Flag for upper-case hexadecimal symbols + * @const UPPER_HEX Flag for uppercase hexadecimal symbols */ const UPPER_HEX = 8; /** - * @const LOWER_HEX Flag for lower-case hexidecimal symbols + * @const LOWER_HEX Flag for lowercase hexidecimal symbols */ const LOWER_HEX = 16;