Fix typo
authorMark Felder <feld@feld.me>
Wed, 6 Oct 2021 15:49:25 +0000 (10:49 -0500)
committerMark Felder <feld@feld.me>
Wed, 6 Oct 2021 15:49:25 +0000 (10:49 -0500)
lib/pleroma/maintenance.ex

index f1058b68a6184385f11c6e643afa632ffbf4396a..41c799712a8eae89ebe890a04caf6982fa79638b 100644 (file)
@@ -9,7 +9,7 @@ defmodule Pleroma.Maintenance do
   def vacuum(args) do
     case args do
       "analyze" ->
-        Logger.info("Runnning VACUUM ANALYZE.")
+        Logger.info("Running VACUUM ANALYZE.")
 
         Repo.query!(
           "vacuum analyze;",
@@ -18,7 +18,7 @@ defmodule Pleroma.Maintenance do
         )
 
       "full" ->
-        Logger.info("Runnning VACUUM FULL.")
+        Logger.info("Running VACUUM FULL.")
 
         Logger.warn(
           "Re-packing your entire database may take a while and will consume extra disk space during the process."