summaryrefslogtreecommitdiffstats
path: root/docs/en/cowboy/2.6/guide/rest_flowcharts
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-04-04 20:38:06 +0200
committerLoïc Hoguin <[email protected]>2019-04-04 20:38:06 +0200
commit8b84abfeb42f664f838def3708838e5ac7275443 (patch)
treefbb3c3c864f6eec7df3e88679f7aedde04d49d69 /docs/en/cowboy/2.6/guide/rest_flowcharts
parentd1e24ed5ea37a5949e2f75af3fcc4bfda08df092 (diff)
downloadninenines.eu-8b84abfeb42f664f838def3708838e5ac7275443.tar.gz
ninenines.eu-8b84abfeb42f664f838def3708838e5ac7275443.tar.bz2
ninenines.eu-8b84abfeb42f664f838def3708838e5ac7275443.zip
Cowboy 2.6.2
Diffstat (limited to 'docs/en/cowboy/2.6/guide/rest_flowcharts')
-rw-r--r--docs/en/cowboy/2.6/guide/rest_flowcharts/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/en/cowboy/2.6/guide/rest_flowcharts/index.html b/docs/en/cowboy/2.6/guide/rest_flowcharts/index.html
index b1c6dc2c..5bd60360 100644
--- a/docs/en/cowboy/2.6/guide/rest_flowcharts/index.html
+++ b/docs/en/cowboy/2.6/guide/rest_flowcharts/index.html
@@ -65,7 +65,7 @@
<p>This chapter will explain the REST handler state machine through a number of different diagrams.</p>
<p>There are four main paths that requests may follow. One for the method OPTIONS; one for the methods GET and HEAD; one for the methods PUT, POST and PATCH; and one for the method DELETE.</p>
<p>All paths start with the &quot;Start&quot; diagram, and all paths excluding the OPTIONS path go through the &quot;Content negotiation&quot; diagram and optionally the &quot;Conditional requests&quot; diagram if the resource exists.</p>
-<p>The red squares refer to another diagram. The light green squares indicate a response. Other squares may be either a callback or a question answered by Cowboy itself. Green arrows tend to indicate the default behavior if the callback is undefined.</p>
+<p>The red squares refer to another diagram. The light green squares indicate a response. Other squares may be either a callback or a question answered by Cowboy itself. Green arrows tend to indicate the default behavior if the callback is undefined. The star next to values indicate that the value is descriptive rather than exact.</p>
<h2 id="_start">Start</h2>
<p>All requests start from here.</p>
<img src="../rest_start.png" alt="REST starting flowchart"/><p>A series of callbacks are called in succession to perform a general checkup of the service, the request line and request headers.</p>