Skip to content

Commit 644cccb

Browse files
committed
docs: do format
1 parent 9a9816e commit 644cccb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/typed_structor/plugin.ex

+4-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ defmodule TypedStructor.Plugin do
5454
@type t() :: %MyApp.User{
5555
__meta__: Ecto.Schema.Metadata.t(),
5656
age: integer() | nil,
57-
id: integer(), name: String.t(),
57+
id: integer(),
58+
name: String.t(),
5859
password: String.t() | nil,
5960
posts: [MyApp.Post.t()] | nil
6061
}
@@ -82,7 +83,8 @@ defmodule TypedStructor.Plugin do
8283
related_key: :user_id,
8384
on_cast: nil,
8485
queryable: MyApp.Post,
85-
on_delete: :nothing, on_replace: :raise,
86+
on_delete: :nothing,
87+
on_replace: :raise,
8688
where: [],
8789
unique: true,
8890
defaults: [],

0 commit comments

Comments
 (0)