remove trailing whitespace
[gitmo/Moose.git] / t / 100_bugs / 001_subtype_quote_bug.t
index a97e2d1..f605e30 100644 (file)
@@ -13,20 +13,20 @@ The code:
   subtype Stuff
     => as Object
     => where { ... }
-  
-will break if the Object:: namespace exists. So the 
+
+will break if the Object:: namespace exists. So the
 solution is to quote 'Object', like so:
 
   subtype Stuff
     => as 'Object'
     => where { ... }
 
-Moose 0.03 did this, now it doesn't, so all should 
-be well from now on. 
+Moose 0.03 did this, now it doesn't, so all should
+be well from now on.
 
 =cut
 
 { package Object::Test; }
 
 package Foo;
-::use_ok('Moose');      
+::use_ok('Moose');