Skip to content

Commit cf3c37e

Browse files
committed
Prefer String.t() over string()
1 parent f1105bd commit cf3c37e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/error_tracker/schemas/error.ex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ defmodule ErrorTracker.Error do
1313
use Ecto.Schema
1414

1515
@type t :: %__MODULE__{
16-
kind: string(),
17-
reason: string(),
18-
source_line: string(),
19-
source_function: string(),
20-
status: :resolved | :unresolved
21-
}
16+
kind: String.t(),
17+
reason: String.t(),
18+
source_line: String.t(),
19+
source_function: String.t(),
20+
status: :resolved | :unresolved
21+
}
2222

2323
schema "error_tracker_errors" do
2424
field :kind, :string

0 commit comments

Comments
 (0)