Skip to content

Commit

Permalink
Make type optional
Browse files Browse the repository at this point in the history
  • Loading branch information
nmingazov committed May 15, 2024
1 parent a6441ed commit d4aa52a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/snap/responses/hit.ex
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ defmodule Snap.Hit do

@type t :: %__MODULE__{
index: String.t(),
type: String.t(),
type: String.t() | nil,
id: String.t(),
score: float() | nil,
source: map() | nil,
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Snap.MixProject do

@original_github_url "https://github.com/breakroom/snap"
@github_url "https://github.com/surgeventures/snap"
@version "0.10.2"
@version "0.10.3"

def project do
[
Expand Down

0 comments on commit d4aa52a

Please sign in to comment.