From 1636ca21ed136768f47513214ec6fcb80c6c5a26 Mon Sep 17 00:00:00 2001 From: nronas Date: Mon, 7 Apr 2014 01:50:50 +0300 Subject: [PATCH] Remove redundant comments --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 511c25a0..1766050e 100644 --- a/README.md +++ b/README.md @@ -514,7 +514,7 @@ class Vehicle state_machine :initial => :parked do before_transition :parked => any - :parked, :do => :put_on_seatbelt after_transition any => :parked do |vehicle, transition| - vehicle.seatbelt = 'off' # self is the record + vehicle.seatbelt = 'off' end around_transition :benchmark @@ -566,7 +566,7 @@ class Vehicle state_machine :initial => :parked do before_transition :parked => any - :parked, :do => :put_on_seatbelt after_transition any => :parked do |vehicle, transition| - vehicle.seatbelt = 'off' # self is the record + vehicle.seatbelt = 'off' end around_transition :benchmark