From 30967f57ec35c01072d16c8b1f1c51dbdb32d74f Mon Sep 17 00:00:00 2001 From: TJ Holowaychuk Date: Thu, 9 Oct 2014 09:11:09 -0700 Subject: [PATCH] docs: fix content negotiation section indentation --- docs/api/request.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/request.md b/docs/api/request.md index b97be32..b105d48 100644 --- a/docs/api/request.md +++ b/docs/api/request.md @@ -213,11 +213,11 @@ if (this.is('image/*')) { - `request.acceptsCharsets(charsets)` - `request.acceptsLanguages(langs)` - If no types are supplied, __all__ acceptable types are returned. +If no types are supplied, __all__ acceptable types are returned. - If multiple types are supplied, the best match will be returned. If no matches are found, a `false` is returned, and you should send a `406 "Not Acceptable"` response to the client. +If multiple types are supplied, the best match will be returned. If no matches are found, a `false` is returned, and you should send a `406 "Not Acceptable"` response to the client. - In the case of missing accept headers where any type is acceptable, the first type will be returned. Thus, the order of types you supply is important. +In the case of missing accept headers where any type is acceptable, the first type will be returned. Thus, the order of types you supply is important. ### request.accepts(types)