From 63298f36a8cdaf7e5d8fdfc8e25eaed30f586da8 Mon Sep 17 00:00:00 2001 From: "Daniel St. Jules" Date: Sat, 31 Aug 2013 19:30:47 -0400 Subject: [PATCH] Cleanup comments, release 1.1.0 --- src/Stringy/Stringy.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Stringy/Stringy.php b/src/Stringy/Stringy.php index cf5f03d..9cf13b5 100644 --- a/src/Stringy/Stringy.php +++ b/src/Stringy/Stringy.php @@ -9,12 +9,12 @@ class Stringy public $encoding; /** - * Inializes a Stringy object and assigns both str and encoding properties + * Initializes a Stringy object and assigns both str and encoding properties * the supplied values. If $encoding is not specified, it defaults to * mb_internal_encoding(). * - * @param string $str String to modify - * @param string $encoding The character encoding + * @param string $str String to modify + * @param string $encoding The character encoding */ public function __construct($str, $encoding = null) { @@ -349,9 +349,9 @@ class Stringy * 'right', 'both') is 'right'. Throws an InvalidArgumentException if * $padType isn't one of those 3 values. * - * @param int $length Desired string length after padding - * @param string $padStr String used to pad, defaults to space - * @param string $padType One of 'left', 'right', 'both' + * @param int $length Desired string length after padding + * @param string $padStr String used to pad, defaults to space + * @param string $padType One of 'left', 'right', 'both' * @return Stringy Object with a padded $str * @throws InvalidArgumentException If $padType isn't one of 'right', * 'left' or 'both'