Skip to content

Commit

Permalink
empty charlist -> empty list
Browse files Browse the repository at this point in the history
apply suggestions from review
  • Loading branch information
SteffenDE committed Feb 24, 2025
1 parent 0f1f2d1 commit 8030607
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ defmodule Phoenix.Integration.CodeGeneration.AppWithNoOptionsTest do
[
"--no-halt",
"-e",
"spawn fn -> IO.gets(~c[]) && System.halt(0) end",
"spawn fn -> IO.gets([]) && System.halt(0) end",
"-S",
"mix",
"phx.server"
Expand Down
2 changes: 1 addition & 1 deletion priv/templates/phx.gen.auth/auth.ex
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ defmodule <%= inspect auth_module %> do
## Examples
Use the `on_mount` lifecycle macro in LiveViews to mount or authenticate
the current_scope:
the `current_scope`:
defmodule <%= inspect context.web_module %>.PageLive do
use <%= inspect context.web_module %>, :live_view
Expand Down

0 comments on commit 8030607

Please sign in to comment.