aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/google/api.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/google/api.scala')
-rw-r--r--src/main/scala/google/api.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/scala/google/api.scala b/src/main/scala/google/api.scala
index 17db031..39fc16d 100644
--- a/src/main/scala/google/api.scala
+++ b/src/main/scala/google/api.scala
@@ -24,9 +24,11 @@ object TraceSpan {
sealed trait SpanKind
// Unspecified
case object Unspecified extends SpanKind
- // Indicates that the span covers server-side handling of an RPC or other remote network request.
+ // Indicates that the span covers server-side handling of an RPC or other
+ // remote network request.
case object RpcServer extends SpanKind
- // Indicates that the span covers the client-side wrapper around an RPC or other remote request.
+ // Indicates that the span covers the client-side wrapper around an RPC or
+ // other remote request.
case object RpcClient extends SpanKind
object SpanKind {