README.md in formulaic-0.0.3 vs README.md in formulaic-0.0.4

- old
+ new

@@ -7,11 +7,11 @@ ## Usage ```ruby feature 'New user registration' do - scenario 'succesfull sign up' do + scenario 'successfull sign up' do visit sign_in_path fill_form(:user, { name: 'Caleb', email: 'caleb@thoughtbot.com', 'Terms of Service': true }) click_on submit(:user) @@ -80,10 +80,10 @@ ```ruby fill_form(:user, attributes_for(:user)) ``` -You may have attributes included in your `User` factory that don’t pretain to +You may have attributes included in your `User` factory that don’t pertain to sign up: ```ruby fill_form(:user, attributes_for(:user).slice(sign_up_attributes))