diff --git a/modules/server/src/main/scala/gql/server/interpreter/QueryInterpreter.scala b/modules/server/src/main/scala/gql/server/interpreter/QueryInterpreter.scala index a3be517b1..e75f1a895 100644 --- a/modules/server/src/main/scala/gql/server/interpreter/QueryInterpreter.scala +++ b/modules/server/src/main/scala/gql/server/interpreter/QueryInterpreter.scala @@ -11,8 +11,8 @@ import gql._ import gql.preparation._ import cats.effect.std.Supervisor -/** The [[QueryInterpreter]] will prepare a query for execution by inspecting the ast and planning the query accordingly. - * Once all inputs have been prepared, the execution AST is passed to the [[SubqueryInterpreter]] for evaluation. +/** The [[QueryInterpreter]] will prepare a query for execution by inspecting the ast and planning the query accordingly. Once all inputs + * have been prepared, the execution AST is passed to the [[SubqueryInterpreter]] for evaluation. */ trait QueryInterpreter[F[_]] { import QueryInterpreter._ diff --git a/modules/server/src/main/scala/gql/server/interpreter/StreamInterpreter.scala b/modules/server/src/main/scala/gql/server/interpreter/StreamInterpreter.scala index dd5494d04..989f15041 100644 --- a/modules/server/src/main/scala/gql/server/interpreter/StreamInterpreter.scala +++ b/modules/server/src/main/scala/gql/server/interpreter/StreamInterpreter.scala @@ -12,11 +12,11 @@ import fs2.Stream import scala.concurrent.duration.FiniteDuration /** The [[StreamInterpreter]] is resposible for: - * - Wireing together results for a query. - * - Handling incoming asynchronous events. - * - Handling resource lifetimes. - * - * For actual query excution, take a look at [[QueryInterpreter]]. + * - Wireing together results for a query. + * - Handling incoming asynchronous events. + * - Handling resource lifetimes. + * + * For actual query excution, take a look at [[QueryInterpreter]]. */ trait StreamInterpreter[F[_]] { import StreamInterpreter._ diff --git a/modules/server/src/main/scala/gql/server/interpreter/SubqueryInterpreter.scala b/modules/server/src/main/scala/gql/server/interpreter/SubqueryInterpreter.scala index e92f1e87a..cd3063951 100644 --- a/modules/server/src/main/scala/gql/server/interpreter/SubqueryInterpreter.scala +++ b/modules/server/src/main/scala/gql/server/interpreter/SubqueryInterpreter.scala @@ -30,11 +30,11 @@ import io.circe.syntax._ import gql._ /** The [[SubqueryInterpreter]] recursively runs through the AST and performs a multitude of tasks: - * - Runs the [[Resolver]]/[[Step]]s defined in the query. - * - Accumulates errors that occur during the evaluation of the query. - * - Logs streams that have been subscribed to. - * - Batches computations that have been marked as batchable. - */ + * - Runs the [[Resolver]]/[[Step]]s defined in the query. + * - Accumulates errors that occur during the evaluation of the query. + * - Logs streams that have been subscribed to. + * - Batches computations that have been marked as batchable. + */ trait SubqueryInterpreter[F[_]] { type W[A] = WriterT[F, Chain[EvalFailure], A]