From 5a4812941ef3b5826f0859ebdaac5f740ecc27a4 Mon Sep 17 00:00:00 2001 From: Alexander Gronemann Date: Fri, 28 Oct 2011 20:25:17 +0300 Subject: [PATCH] Fixing typo in GETTING_STARTED.md --- GETTING_STARTED.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index 8da74a22a..bf24d9940 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -69,7 +69,7 @@ factory\_girl supports several different build strategies: build, create, attrib attrs = FactoryGirl.attributes_for(:user) # Returns an object with all defined attributes stubbed out - stub = FactoryGirl.build_stubbed(:user + stub = FactoryGirl.build_stubbed(:user) # Passing a block to any of the methods above will yield the return object FactoryGirl.create(:user) do |user|