Skip to content

Commit 1c8388f

Browse files
authored
fix is_endpoint? error in main (#157)
Fix errant predication error
1 parent 6c63d3c commit 1c8388f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sobelow.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ defmodule Sobelow do
327327
meta_file.router? ->
328328
Map.update!(acc, :routers, &[meta_file.file_path | &1])
329329

330-
meta_file.endpoint? ->
330+
meta_file.is_endpoint? ->
331331
Map.update!(acc, :endpoints, &[meta_file.file_path | &1])
332332

333333
true ->

0 commit comments

Comments
 (0)