From 066b5275c7e4180a48d0ab681297d1a1a2da8ef7 Mon Sep 17 00:00:00 2001 From: Rafael Santos Date: Thu, 28 Apr 2016 11:49:13 -0300 Subject: [PATCH] Fix Ruby syntax highlighting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ba52d9..2399782 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ is finished. AASM will also initialize `LogRunTime` and run the `call` method for you after the transition from `running` to `finished` in the example above. You can pass arguments to the class by defining an initialize method on it, like this: -``` +```ruby class LogRunTime # optional args parameter can be omitted, but if you define initialize # you must accept the model instance as the first parameter to it.