about summary refs log tree commit diff
path: root/spec/models/account_spec.rb
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2018-09-13 18:53:09 -0400
committerEugen Rochko <eugen@zeonfederated.com>2018-09-14 00:53:09 +0200
commit40dd19be37852d4442a924c2a74bcbbfbf57e054 (patch)
treee47f0e5fbf2fa08db31583c0566c14c715daaf2e /spec/models/account_spec.rb
parent4959ead07c56be120fd00b10c5da4f9db0bb1ea1 (diff)
Misc. typos (#8694)
Found via `codespell -q 3 --skip="./app/javascript/mastodon/locales,./config/locales"`
Diffstat (limited to 'spec/models/account_spec.rb')
-rw-r--r--spec/models/account_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb
index ec01026db..ae19251ae 100644
--- a/spec/models/account_spec.rb
+++ b/spec/models/account_spec.rb
@@ -559,7 +559,7 @@ RSpec.describe Account, type: :model do
     end
 
     context 'when is local' do
-      it 'is invalid if the username is not unique in case-insensitive comparsion among local accounts' do
+      it 'is invalid if the username is not unique in case-insensitive comparison among local accounts' do
         account_1 = Fabricate(:account, username: 'the_doctor')
         account_2 = Fabricate.build(:account, username: 'the_Doctor')
         account_2.valid?