Skip to content

Commit 6985787

Browse files
author
Alex Ermashev
committed
correct the docs
1 parent d92af86 commit 6985787

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ In this case we don't really care about the current mode, we just work with the
7777
use Tiny\Http\RequestCliParams;
7878
use Tiny\Http\RequestHttpParams;
7979
80-
// a good tip: the should be placed in a factory
80+
// a good tip: this should be placed in a factory
8181
$request = new Request((php_sapi_name() === 'cli'
8282
? new RequestCliParams($_SERVER)
8383
: new RequestHttpParams($_SERVER)
@@ -161,7 +161,7 @@ If we don't need to know about the current context we can build an abstraction l
161161
use Tiny\Http\ResponseHttp;
162162
use Tiny\Http\ResponseHttpUtils;
163163
164-
// a good tip: the should be placed in a factory
164+
// a good tip: this should be placed in a factory
165165
$response = (php_sapi_name() === 'cli'
166166
? new ResponseCli()
167167
: new ResponseHttp(

0 commit comments

Comments
 (0)