From 841703d986b5bae0c08cf462e7811bf7a25ee445 Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Tue, 19 Dec 2023 10:56:35 +0100 Subject: [PATCH] docs(servient): fix `addClientFactory` documentation --- lib/src/core/servient.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/core/servient.dart b/lib/src/core/servient.dart index b8d07688..a7b7c774 100644 --- a/lib/src/core/servient.dart +++ b/lib/src/core/servient.dart @@ -195,7 +195,7 @@ class Servient { List get clientSchemes => _clientFactories.keys.toList(growable: false); - /// Adds a new [clientFactory] to this [Servient.] + /// Adds a new [clientFactory] to this [Servient]. void addClientFactory(ProtocolClientFactory clientFactory) { for (final scheme in clientFactory.schemes) { _clientFactories[scheme] = clientFactory;