We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efe21f commit 7b3c711Copy full SHA for 7b3c711
README.md
@@ -1347,14 +1347,14 @@ bottle.run(host='localhost', port=8080)
1347
bottle.run(host='0.0.0.0', port=80, server='cherrypy')
1348
```
1349
1350
-### Static request
+### Static Request
1351
```python
1352
@route('/img/<image>')
1353
def send_image(image):
1354
return static_file(image, 'images/', mimetype='image/png')
1355
1356
1357
-### Dynamic request
+### Dynamic Request
1358
1359
@route('/<sport>')
1360
def send_page(sport):
@@ -1363,7 +1363,7 @@ def send_page(sport):
1363
return template(page)
1364
1365
1366
-### REST request
+### REST Request
1367
1368
@post('/odds/<sport>')
1369
def odds_handler(sport):
0 commit comments