Skip to content

Commit 5c8f9aa

Browse files
committed
Fix getting started links
1 parent 1a8bad1 commit 5c8f9aa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/elixir/lib/gen_server.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ defmodule GenServer do
475475
guide provides a tutorial-like introduction. The documentation and links
476476
in Erlang can also provide extra insight.
477477
478-
* [GenServer - Elixir's Getting Started Guide](https://elixir-lang.org/getting-started/mix-otp/genserver.html)
478+
* [GenServer - Elixir's Getting Started Guide](genservers.md)
479479
* [`:gen_server` module documentation](`:gen_server`)
480480
* [gen_server Behaviour - OTP Design Principles](https://www.erlang.org/doc/design_principles/gen_server_concepts.html)
481481
* [Clients and Servers - Learn You Some Erlang for Great Good!](http://learnyousomeerlang.com/clients-and-servers)

lib/elixir/lib/process.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ defmodule Process do
504504
If the process is already dead when calling `Process.monitor/1`, a
505505
`:DOWN` message is delivered immediately.
506506
507-
See ["The need for monitoring"](https://elixir-lang.org/getting-started/mix-otp/genserver.html#the-need-for-monitoring)
507+
See ["The need for monitoring"](genservers.md#the-need-for-monitoring)
508508
for an example. See `:erlang.monitor/2` for more information.
509509
510510
Inlined by the compiler.

lib/elixir/pages/references/syntax-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ end
395395
396396
All of the constructs above are part of Elixir's syntax and have their own representation as part of the Elixir AST. This section will discuss the remaining constructs that are alternative representations of the constructs above. In other words, the constructs below can be represented in more than one way in your Elixir code and retain AST equivalence. We call this "Optional Syntax".
397397
398-
For a lightweight introduction to Elixir's Optional Syntax, [see this document](https://elixir-lang.org/getting-started/optional-syntax.html). Below we continue with a more complete reference.
398+
For a lightweight introduction to Elixir's Optional Syntax, [see this document](optional-syntax.md). Below we continue with a more complete reference.
399399
400400
### Integers in other bases and Unicode code points
401401

0 commit comments

Comments
 (0)