From 7d1209a89100e33a1460c3fd12a9add08a9f5743 Mon Sep 17 00:00:00 2001 From: dowwie Date: Fri, 5 Apr 2019 14:24:54 -0400 Subject: [PATCH] added doc for finish method on Connector --- actix-http/src/client/connector.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/actix-http/src/client/connector.rs b/actix-http/src/client/connector.rs index caf1e88e7..8a0968f52 100644 --- a/actix-http/src/client/connector.rs +++ b/actix-http/src/client/connector.rs @@ -173,7 +173,9 @@ where self } - /// Finish configuration process and create connector service. + /// Finish configuration process and create connector service. + /// The Connector builder always concludes by calling `finish()` last in + /// its combinator chain. pub fn finish( self, ) -> impl Service + Clone