From 487bf54cdf6fbe894c0058a97289cab25ba6fcf0 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Sun, 5 Jun 2016 17:13:35 +0200 Subject: [PATCH] fixes #4278 --- lib/pure/httpcore.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pure/httpcore.nim b/lib/pure/httpcore.nim index 98c03d1770..219c22265f 100644 --- a/lib/pure/httpcore.nim +++ b/lib/pure/httpcore.nim @@ -94,8 +94,8 @@ converter toString*(values: HttpHeaderValues): string = return seq[string](values)[0] proc `[]`*(headers: HttpHeaders, key: string, i: int): string = - ## Returns the ``i``th value associated with the given key. If there are - ## no values associated with the key or the ``i``th value doesn't exist, + ## Returns the ``i``'th value associated with the given key. If there are + ## no values associated with the key or the ``i``'th value doesn't exist, ## an exception is raised. return headers.table[key.toLower][i]