Skip to content

Commit e73bedf

Browse files
authored
Merge branch 'master' into codex/edit-known-issues-limitations.md
2 parents cf18718 + d6e57ef commit e73bedf

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

apps/language_server/lib/language_server/markdown_utils.ex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ defmodule ElixirLS.LanguageServer.MarkdownUtils do
265265
{module, type, arity} ->
266266
if match?(":" <> _, rest) do
267267
if @erlang_ex_doc? do
268-
# TODO not sure hos the docs will handle versions app/vsn does not work as of June 2024
268+
# TODO not sure how the docs will handle versions app/vsn does not work as of June 2024
269269
{app, _vsn} = DocLinks.get_app(module)
270270
"https://www.erlang.org/doc/apps/#{app}/#{module}.html#t:#{type}/#{arity}"
271271
else
@@ -286,7 +286,7 @@ defmodule ElixirLS.LanguageServer.MarkdownUtils do
286286
{module, callback, arity} ->
287287
if match?(":" <> _, rest) do
288288
if @erlang_ex_doc? do
289-
# TODO not sure hos the docs will handle versions app/vsn does not work as of June 2024
289+
# TODO not sure how the docs will handle versions app/vsn does not work as of June 2024
290290
{app, _vsn} = DocLinks.get_app(module)
291291
"https://www.erlang.org/doc/apps/#{app}/#{module}.html#c:#{callback}/#{arity}"
292292
else
@@ -371,7 +371,7 @@ defmodule ElixirLS.LanguageServer.MarkdownUtils do
371371
{app, _vsn} = app_vsn
372372

373373
if app in @all_otp_apps and @erlang_ex_doc? do
374-
# TODO not sure hos the docs will handle versions app/vsn does not work as of June 2024
374+
# TODO not sure how the docs will handle versions app/vsn does not work as of June 2024
375375
"https://www.erlang.org/doc/apps/#{app}/#{page}"
376376
else
377377
DocLinks.hex_docs_extra_link(app_vsn, page)
@@ -399,7 +399,7 @@ defmodule ElixirLS.LanguageServer.MarkdownUtils do
399399
{module, function, arity} ->
400400
if match?(":" <> _, prefix) and module != Kernel.SpecialForms do
401401
if @erlang_ex_doc? do
402-
# TODO not sure hos the docs will handle versions app/vsn does not work as of June 2024
402+
# TODO not sure how the docs will handle versions app/vsn does not work as of June 2024
403403
{app, _vsn} = DocLinks.get_app(module)
404404
"https://www.erlang.org/doc/apps/#{app}/#{module}.html##{function}/#{arity}"
405405
else

docs/known-issues-limitations.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
* `.exs` files don't return compilation errors
44
* "Fetching n dependencies" sometimes gets stuck (remove the `.elixir_ls` directory to fix)
5-
* Debugger doesn't work in Elixir 1.10.0 - 1.10.2 (but it should work in 1.10.3 when [this fix](https://github.com/elixir-lang/elixir/pull/9864) is released)
65
* "Go to definition" does not work within the `scope` of a Phoenix router
76
* On first launch dialyzer will cause high CPU usage for a considerable time
87
* Dialyzer does not pick up changes involving remote types (https://github.com/elixir-lsp/elixir-ls/issues/502)

0 commit comments

Comments
 (0)