Skip to content

Commit

Permalink
minor: Format character lists with 'c' sigil
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Jun 2, 2024
1 parent 6a7b69f commit 05881b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/fixtures/test_server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ defmodule TestServer do
:cowboy_router.compile([
{:_,
[
{'/', WebsocketHandler, []},
{'/http_get', HttpHandler, []},
{'/forbidden', ForbiddenHandler, []}
{~c"/", WebsocketHandler, []},
{~c"/http_get", HttpHandler, []},
{~c"/forbidden", ForbiddenHandler, []}
]}
])

Expand Down

0 comments on commit 05881b3

Please sign in to comment.