Fixing typo in GETTING_STARTED.md

This commit is contained in:
Alexander Gronemann 2011-10-28 20:25:17 +03:00 committed by Joshua Clayton
parent 3114dcd935
commit 5a4812941e
1 changed files with 1 additions and 1 deletions

View File

@ -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|