Skip to content

Commit 0682980

Browse files
committed
Remove mentions of "since OTP27+"
1 parent 5987cad commit 0682980

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

lib/elixir/pages/getting-started/debugging.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,6 @@ iex> :observer.start()
160160
> When running `iex` inside a project with `iex -S mix`, `observer` won't be available as a dependency. To do so, you will need to call the following functions before:
161161
>
162162
> ```elixir
163-
> iex> Mix.ensure_application!(:wx) # Not necessary on Erlang/OTP 27+
164-
> iex> Mix.ensure_application!(:runtime_tools) # Not necessary on Erlang/OTP 27+
165163
> iex> Mix.ensure_application!(:observer)
166164
> iex> :observer.start()
167165
> ```

lib/elixir/src/elixir_expand.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ assert_no_underscore_clause_in_cond(_Other, _E) ->
11281128
%% Errors
11291129

11301130
format_error(invalid_match_on_zero_float) ->
1131-
"pattern matching on 0.0 is equivalent to matching only on +0.0 from Erlang/OTP 27+. Instead you must match on +0.0 or -0.0";
1131+
"pattern matching on 0.0 is equivalent to matching only on +0.0. Instead you must match on +0.0 or -0.0";
11321132
format_error({useless_literal, Term}) ->
11331133
io_lib:format("code block contains unused literal ~ts "
11341134
"(remove the literal or assign it to _ to avoid warnings)",

0 commit comments

Comments
 (0)