From 36742f078756a532ff11fd55f64d049365b8ac84 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Tue, 9 Jun 2020 19:57:15 -0700 Subject: [PATCH] Reflow a doc comment to 80 characters (#61) --- lib/src/server.dart | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/src/server.dart b/lib/src/server.dart index 83129ea727ff2..107544a84f2ca 100644 --- a/lib/src/server.dart +++ b/lib/src/server.dart @@ -61,11 +61,12 @@ class Server { /// invoked. If it is not set, the exception will be swallowed. final ErrorCallback onUnhandledError; - /// Whether to strictly enforce the JSON-RPC 2.0 specification for received messages. + /// Whether to strictly enforce the JSON-RPC 2.0 specification for received + /// messages. /// - /// If `false`, this [Server] will accept some requests which are not conformant - /// with the JSON-RPC 2.0 specification. In particular, requests missing the - /// `jsonrpc` parameter will be accepted. + /// If `false`, this [Server] will accept some requests which are not + /// conformant with the JSON-RPC 2.0 specification. In particular, requests + /// missing the `jsonrpc` parameter will be accepted. final bool strictProtocolChecks; /// Creates a [Server] that communicates over [channel].