Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
drmarjanovic committed Nov 23, 2022
1 parent 335bdb9 commit 91a344c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ object ElasticRequest {
extends ElasticRequest[B]

def getById[A: Schema](
index: Index,
index: IndexName,
id: DocumentId,
routing: Option[Routing] = None
): ElasticRequest[Either[DocumentGettingError, A]] =
Expand All @@ -24,7 +24,7 @@ object ElasticRequest {
}

private[elasticsearch] final case class GetById(
index: Index,
index: IndexName,
id: DocumentId,
routing: Option[Routing] = None
) extends ElasticRequest[Option[Document]]
Expand Down

0 comments on commit 91a344c

Please sign in to comment.