diff --git a/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb b/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb index 811ef17de..0ec7043ad 100644 --- a/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +++ b/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb @@ -86,13 +86,13 @@ module ActiveRecord # end # # Or, if you're using - # [FactoryGirl](http://github.com/thoughtbot/factory_girl) and you have a + # [FactoryBot](https://github.com/thoughtbot/factory_bot) and you have a # `post` factory defined which automatically fills in `content`, you can # say: # # RSpec.describe Post, type: :model do # describe "validations" do - # subject { FactoryGirl.create(:post) } + # subject { FactoryBot.create(:post) } # it { should validate_uniqueness_of(:title) } # end # end