From: David Steinbrunner Date: Wed, 7 Aug 2013 23:32:24 +0000 (-0400) Subject: typo fixes X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3ef921edf98cc34cac74e25a0412b68ee6e57762;p=dbsrgits%2FDBIx-Class-Historic.git typo fixes --- diff --git a/lib/DBIx/Class/UTF8Columns.pm b/lib/DBIx/Class/UTF8Columns.pm index a26dcdc..52df664 100644 --- a/lib/DBIx/Class/UTF8Columns.pm +++ b/lib/DBIx/Class/UTF8Columns.pm @@ -44,7 +44,7 @@ L. As a result of this problem L sends the original column values to the database, while L sends the encoded values. L and L -are both affected by ths bug. +are both affected by this bug. It is unclear how this bug went undetected for so long (it was introduced in March 2006), No attempts to fix it will be made while the @@ -143,7 +143,7 @@ sub get_columns { sub store_column { my ( $self, $column, $value ) = @_; - # the dirtyness comparison must happen on the non-encoded value + # the dirtiness comparison must happen on the non-encoded value my $copy; if ( defined $value and $self->_is_utf8_column($column) and utf8::is_utf8($value) ) {