From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: kcar-public@bogomips.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id EEBA11F7B4 for ; Mon, 12 Jan 2015 07:43:04 +0000 (UTC) From: Eric Wong To: kcar-public@bogomips.org Subject: [PATCH] response: fix mispelling of "guarantee" Date: Mon, 12 Jan 2015 07:43:02 +0000 Message-Id: <1421048584-16553-1-git-send-email-e@80x24.org> X-Mailer: git-send-email 2.2.1.271.g3978422.dirty List-Id: --- lib/kcar/response.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kcar/response.rb b/lib/kcar/response.rb index 2ba19f2..dba7fc8 100644 --- a/lib/kcar/response.rb +++ b/lib/kcar/response.rb @@ -27,7 +27,7 @@ class Kcar::Response # # [ status, headers, body ] # - # Use Kcar::Response#rack if you want to guaranteee a proper Rack response. + # Use Kcar::Response#rack if you want to guarantee a proper Rack response. # # this method will not return until the response headers are fully parsed, # but the body returned will be this Kcar::Response handler itself. -- EW