From 8ec6ca8ad8c07033919536dd4de68f49abd46089 Mon Sep 17 00:00:00 2001 From: Jacob Dreesen Date: Sat, 26 Jan 2019 13:46:16 +0100 Subject: [PATCH] Fix typo --- message/message-factory.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/message/message-factory.rst b/message/message-factory.rst index 1b98a8a..f812a5b 100644 --- a/message/message-factory.rst +++ b/message/message-factory.rst @@ -76,7 +76,7 @@ choice to the bootstrapping code:: { $request = $this->requestFactory->createRequest('GET', 'http://httplug.io'); $stream = $this->streamFactory->createStream('stream content'); - $uri = $this->UriFactory->createUri('http://httplug.io'); + $uri = $this->uriFactory->createUri('http://httplug.io'); ... } }