summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/update/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/update/index.md b/doc/update/index.md
index b2d31489ed4..3ba09a47007 100644
--- a/doc/update/index.md
+++ b/doc/update/index.md
@@ -471,7 +471,7 @@ that may remain stuck permanently in a **pending** state.
```ruby
Gitlab::Database::BackgroundMigrationJob.pending.where(class_name: "PopulateTopicsNonPrivateProjectsCount").find_each do |job|
- puts Gitlab::Database::BackgroundMigrationJob.mark_all_as_succeeded("PopulateTopicsNonPrivateProjectsCountq", job.arguments)
+ puts Gitlab::Database::BackgroundMigrationJob.mark_all_as_succeeded("PopulateTopicsNonPrivateProjectsCount", job.arguments)
end
```