diff --git a/index.html b/index.html
index adf77021..918e1ab2 100644
--- a/index.html
+++ b/index.html
@@ -2454,6 +2454,7 @@ $(function(){
create → POST /collection
read → GET /collection[/id]
update → PUT /collection/id
+ patch → PATCH /collection/id
delete → DELETE /collection/id
@@ -2489,7 +2490,7 @@ end
If you want to work with a legacy web server that doesn't support Backbone's
default REST/HTTP approach, you may choose to turn on Backbone.emulateHTTP.
- Setting this option will fake PUT and DELETE requests with
+ Setting this option will fake PUT, PATCH and DELETE requests with
a HTTP POST, setting the X-HTTP-Method-Override header
with the true method. If emulateJSON is also on, the true method
will be passed as an additional _method parameter.