Skip to content

Add space to fix sentance syntax error

What does this MR do and why?

Without a space, these two sentences run together. This is a super minor nitpick.

Before

➜  bin/rails db:migrate RAILS_ENV=test
rails aborted!
Gitlab::Database::GitlabSchema::UnknownSchemaError: /Users/kerrizor/projects/gitlab/gdk/gitlab/db/docs/p_ci_builds.yml must specify a valid gitlab_schema for p_ci_builds.See https://docs.gitlab.com/ee/development/database/database_dictionary.html
/Users/kerrizor/projects/gitlab/gdk/gitlab/lib/gitlab/database/gitlab_schema.rb:151:in `block in build_dictionary'

After

➜  bin/rails db:migrate RAILS_ENV=test
rails aborted!
Gitlab::Database::GitlabSchema::UnknownSchemaError: /Users/kerrizor/projects/gitlab/gdk/gitlab/db/docs/p_ci_builds.yml must specify a valid gitlab_schema for p_ci_builds. See https://docs.gitlab.com/ee/development/database/database_dictionary.html
/Users/kerrizor/projects/gitlab/gdk/gitlab/lib/gitlab/database/gitlab_schema.rb:151:in `block in build_dictionary'

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Merge request reports