@@ -265,7 +265,7 @@ defmodule ElixirLS.LanguageServer.MarkdownUtils do
265
265
{ module , type , arity } ->
266
266
if match? ( ":" <> _ , rest ) do
267
267
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
269
269
{ app , _vsn } = DocLinks . get_app ( module )
270
270
"https://www.erlang.org/doc/apps/#{ app } /#{ module } .html#t:#{ type } /#{ arity } "
271
271
else
@@ -286,7 +286,7 @@ defmodule ElixirLS.LanguageServer.MarkdownUtils do
286
286
{ module , callback , arity } ->
287
287
if match? ( ":" <> _ , rest ) do
288
288
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
290
290
{ app , _vsn } = DocLinks . get_app ( module )
291
291
"https://www.erlang.org/doc/apps/#{ app } /#{ module } .html#c:#{ callback } /#{ arity } "
292
292
else
@@ -371,7 +371,7 @@ defmodule ElixirLS.LanguageServer.MarkdownUtils do
371
371
{ app , _vsn } = app_vsn
372
372
373
373
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
375
375
"https://www.erlang.org/doc/apps/#{ app } /#{ page } "
376
376
else
377
377
DocLinks . hex_docs_extra_link ( app_vsn , page )
@@ -399,7 +399,7 @@ defmodule ElixirLS.LanguageServer.MarkdownUtils do
399
399
{ module , function , arity } ->
400
400
if match? ( ":" <> _ , prefix ) and module != Kernel.SpecialForms do
401
401
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
403
403
{ app , _vsn } = DocLinks . get_app ( module )
404
404
"https://www.erlang.org/doc/apps/#{ app } /#{ module } .html##{ function } /#{ arity } "
405
405
else
0 commit comments