about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2022-02-22 14:14:17 -0500
committerGitHub <noreply@github.com>2022-02-22 20:14:17 +0100
commit73f5e4a1d9c6d067ff62c5cc9a65d929a56f0f00 (patch)
treef012ffa81db81ea4fb14e47ec92e4dc8f088444c /db
parent166f6e4b500dd84eeffdbf887b2dc21e6d8c0aa6 (diff)
Fix various typos (#17621)
Found via `codespell -q 3 -S ./CHANGELOG.md,./AUTHORS.md,./config/locales,./app/javascript/mastodon/locales -L ba,keypair,medias,ro`
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20170920032311_fix_reblogs_in_feeds.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20170920032311_fix_reblogs_in_feeds.rb b/db/migrate/20170920032311_fix_reblogs_in_feeds.rb
index 5654bf6f8..bcd4b9137 100644
--- a/db/migrate/20170920032311_fix_reblogs_in_feeds.rb
+++ b/db/migrate/20170920032311_fix_reblogs_in_feeds.rb
@@ -15,7 +15,7 @@ class FixReblogsInFeeds < ActiveRecord::Migration[5.1]
     # feed, with an entry in a reblog tracking zset (where the score
     # is once again set to the reblogging status' ID, and the value
     # is set to the reblogged status' ID). This is safe for Redis'
-    # float coersion because in this reblog tracking zset, we only
+    # float conversion because in this reblog tracking zset, we only
     # need the rebloggging status' ID to be able to stop tracking
     # entries after they have gotten too far down the feed, which
     # does not require an exact value.