From 019df9887519701b321c668c1d27d5c0c26fee7a Mon Sep 17 00:00:00 2001 From: claudiob Date: Tue, 4 Dec 2012 22:11:54 -0800 Subject: Replace comments' non-breaking spaces with spaces MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sometimes, on Mac OS X, programmers accidentally press Option+Space rather than just Space and don’t see the difference. The problem is that Option+Space writes a non-breaking space (0XA0) rather than a normal space (0x20). This commit removes all the non-breaking spaces inadvertently introduced in the comments of the code. --- activerecord/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activerecord/CHANGELOG.md') diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index a769a1c65e..e9f652b90e 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -788,7 +788,7 @@ end person.pets.delete("1") # => [#] - person.pets.delete(2, 3) # => [#, #] + person.pets.delete(2, 3) # => [#, #] *Francesco Rodriguez* -- cgit v1.2.3