docs: Fix ordering of language servers in Ruby docs (#15633)

Follow-up to https://github.com/zed-industries/zed/pull/15624.

Since #15624 introduced a fix for the language server ordering, this
fixes the ordering in the Ruby docs.

Release Notes:

- N/A
This commit is contained in:
Thorsten Ball 2024-08-01 19:33:36 +02:00 committed by GitHub
parent 5afa799f37
commit 80594cc7f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -29,7 +29,7 @@ The Ruby extension also provides support for `rubocop` language server for offen
{
"languages": {
"Ruby": {
"language_servers": ["rubocop", "ruby-lsp", "!solargraph", "..."]
"language_servers": ["ruby-lsp", "rubocop", "!solargraph", "..."]
}
}
}