summaryrefslogtreecommitdiffstats
path: root/docs/en/cowboy/2.0/guide/req
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-08-30 14:20:41 +0200
committerLoïc Hoguin <[email protected]>2016-08-30 14:20:41 +0200
commit404cc17f3d81333a3840122b9b49153bd20a33b4 (patch)
treeb0a96d0c287b04014db01e2e77d31f82deef7231 /docs/en/cowboy/2.0/guide/req
parent0de5e4df733ce61356be8bb978746e13540fe9f9 (diff)
downloadninenines.eu-404cc17f3d81333a3840122b9b49153bd20a33b4.tar.gz
ninenines.eu-404cc17f3d81333a3840122b9b49153bd20a33b4.tar.bz2
ninenines.eu-404cc17f3d81333a3840122b9b49153bd20a33b4.zip
Update documentation
Diffstat (limited to 'docs/en/cowboy/2.0/guide/req')
-rw-r--r--docs/en/cowboy/2.0/guide/req/index.html9
1 files changed, 2 insertions, 7 deletions
diff --git a/docs/en/cowboy/2.0/guide/req/index.html b/docs/en/cowboy/2.0/guide/req/index.html
index 15c08a98..13cf97d5 100644
--- a/docs/en/cowboy/2.0/guide/req/index.html
+++ b/docs/en/cowboy/2.0/guide/req/index.html
@@ -69,9 +69,6 @@
<h1 class="lined-header"><span>The Req object</span></h1>
-<div class="sect1">
-<h2 id="req">The Req object</h2>
-<div class="sectionbody">
<div class="paragraph"><p>The Req object is a variable used for obtaining information
about a request, read its body or send a response.</p></div>
<div class="paragraph"><p>It is not really an object in the object-oriented sense.
@@ -80,8 +77,6 @@ used when calling functions from the <code>cowboy_req</code> module.</p></div>
<div class="paragraph"><p>The Req object is the subject of a few different chapters.
In this chapter we will learn about the Req object and
look at how to retrieve information about the request.</p></div>
-</div>
-</div>
<div class="sect1">
<h2 id="_direct_access">Direct access</h2>
<div class="sectionbody">
@@ -230,8 +225,8 @@ http://www.gnu.org/software/src-highlite -->
<div class="paragraph"><p>The scheme and host are lowercased case insensitive binary
strings. The port is an integer representing the port number.
The path and query string are case sensitive binary strings.</p></div>
-<div class="paragraph"><p>Cowboy defines only the <a href="#http">[http]</a> and <a href="#https">[https]</a> schemes.
-They are chosen so that the scheme will only be <a href="#https">[https]</a>
+<div class="paragraph"><p>Cowboy defines only the <code>&lt;&lt;"http"&gt;&gt;</code> and <code>&lt;&lt;"https"&gt;&gt;</code> schemes.
+They are chosen so that the scheme will only be <code>&lt;&lt;"https"&gt;&gt;</code>
for requests on secure HTTP/1.1 or HTTP/2 connections.</p></div>
<div class="paragraph"><p>The effective request URI itself can be reconstructed with
the <code>cowboy_req:uri/1,2</code> function. By default, an absolute