From edc892680162ff6d41ba80c553c8f25539722912 Mon Sep 17 00:00:00 2001 From: Douwe Maan Date: Mon, 19 May 2014 13:23:35 +0200 Subject: Fix typos in readme. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 08e24844fe..ee6a07bf34 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ you then have to manually deserialize. Before, jobs would look like this: ```ruby class TrashableCleanupJob - def perfom(trashable_class, trashable_id, depth) + def perform(trashable_class, trashable_id, depth) trashable = trashable_class.constantize.find(trashable_id) trashable.cleanup(depth) end @@ -58,7 +58,7 @@ Now you can simply do: ```ruby class TrashableCleanupJob - def perfom(trashable, depth) + def perform(trashable, depth) trashable.cleanup(depth) end end -- cgit v1.2.3