From 78662b50109cdc8b40d8709ab6f4cad5fcf8b149 Mon Sep 17 00:00:00 2001 From: Paul Jensen Date: Mon, 20 Apr 2020 14:46:56 -0400 Subject: [PATCH] Change string to User class reference in Getting Started doc User was quoted in the example that presumably shows how to refer to a class directly, which makes the subsequent usage example > you can also pass a symbol or string, confusing. --- GETTING_STARTED.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md index 58abe69..8499013 100644 --- a/GETTING_STARTED.md +++ b/GETTING_STARTED.md @@ -119,7 +119,7 @@ It is also possible to explicitly specify the class: ```ruby # This will use the User class (otherwise Admin would have been guessed) -factory :admin, class: "User" +factory :admin, class: User ``` If the constant is not available