Skip to content

Commit 7b3c711

Browse files
committed
Web
1 parent 9efe21f commit 7b3c711

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1347,14 +1347,14 @@ bottle.run(host='localhost', port=8080)
13471347
bottle.run(host='0.0.0.0', port=80, server='cherrypy')
13481348
```
13491349

1350-
### Static request
1350+
### Static Request
13511351
```python
13521352
@route('/img/<image>')
13531353
def send_image(image):
13541354
return static_file(image, 'images/', mimetype='image/png')
13551355
```
13561356

1357-
### Dynamic request
1357+
### Dynamic Request
13581358
```python
13591359
@route('/<sport>')
13601360
def send_page(sport):
@@ -1363,7 +1363,7 @@ def send_page(sport):
13631363
return template(page)
13641364
```
13651365

1366-
### REST request
1366+
### REST Request
13671367
```python
13681368
@post('/odds/<sport>')
13691369
def odds_handler(sport):

0 commit comments

Comments
 (0)