Small fixes

This commit is contained in:
Marcin Chrzanowski 2021-07-25 13:18:11 +02:00
parent adedb5ca30
commit b709f8d574
1 changed files with 2 additions and 2 deletions

View File

@ -172,11 +172,11 @@ end</code></pre>
<p>
In the example request we mentioned above
(<code>example.com/calculator.html?a=10&amp;b=32</code>), the part
starting from the question mark, <code>?a=10&amp;b=32</code> is the
starting from the question mark, <code>?a=10&amp;b=32</code>, is the
<i>query string</i>. This is how users can submit parameters with their
web requests. Usually these parameters are set by e.g. a form on your
website, but in our simple example we'll be just manually manipulating
the query string.
the URL.
</p>
<p>