From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS6939 64.71.128.0/18 X-Spam-Status: No, score=-1.9 required=3.0 tests=AWL,BAYES_00, MSGID_FROM_MTA_HEADER shortcircuit=no autolearn=unavailable version=3.3.2 Path: news.gmane.org!not-for-mail From: "=?utf-8?q?I=C3=B1aki_Baz_Castillo?=" Newsgroups: gmane.comp.lang.ruby.kgio.general Subject: =?utf-8?q?=5Bkgio=5D_=5BPATCH=5D_Fixed_some_typos_in_Kgio=3A=3ASSLConnector__documentation_=28by_I=C3=B1aki_Baz_Castillo_=3Cibc=40aliax=2Ene_t=3E=29=2E?= Date: Tue, 10 Apr 2012 23:45:25 +0200 Message-ID: <1334094325-10777-1-git-send-email-ibc@aliax.net> References: <1334094325-10777-1-git-send-email-ibc@aliax.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1334094353 29101 80.91.229.3 (10 Apr 2012 21:45:53 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 10 Apr 2012 21:45:53 +0000 (UTC) To: kgio@librelist.com Original-X-From: kgio@librelist.com Tue Apr 10 23:45:51 2012 Return-path: Envelope-to: gclrkg-kgio@m.gmane.org In-Reply-To: <1334094325-10777-1-git-send-email-ibc@aliax.net> List-Archive: List-Help: List-Id: List-Post: List-Subscribe: List-Unsubscribe: Precedence: list Original-Sender: kgio@librelist.com Xref: news.gmane.org gmane.comp.lang.ruby.kgio.general:138 Archived-At: Received: from zedshaw.xen.prgmr.com ([64.71.167.205]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1SHiso-0006Fa-Kw for gclrkg-kgio@m.gmane.org; Tue, 10 Apr 2012 23:45:51 +0200 Received: from zedshaw.xen.prgmr.com (localhost [IPv6:::1]) by zedshaw.xen.prgmr.com (Postfix) with ESMTP id 3997B21D7C5 for ; Tue, 10 Apr 2012 21:52:31 +0000 (UTC) --- ext/kgio_monkey/kgio_monkey.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/kgio_monkey/kgio_monkey.c b/ext/kgio_monkey/kgio_monkey.c index 75ff5bd..56e8fad 100644 --- a/ext/kgio_monkey/kgio_monkey.c +++ b/ext/kgio_monkey/kgio_monkey.c @@ -907,7 +907,7 @@ static VALUE conn_trysendfile(int argc, VALUE *argv, VALUE self) * call-seq: * Kgio::SSLConnector.new(io, ssl_ctx, hostname, session = nil) * - * Initializes and SSL/TLS client socket. Like Kgio::SSL.new, except + * Initializes an SSL/TLS client socket. Like Kgio::SSL.new, except * +hostname+ is required for verification and +session+ may be specified * as an OpenSSL::SSL::Session object. */ @@ -997,7 +997,7 @@ void Init_kgio_monkey_ext(void) * Document-class: Kgio::SSLConnector * * Like Kgio::SSL, but for SSL/TLS clients that connect to - * clients, not SSL/TLS servers. + * servers, not for SSL/TLS servers. */ cConnector = rb_define_class_under(mKgio, "SSLConnector", cKgioSSL); rb_define_alloc_func(cKgioSSL, ssl_alloc); -- 1.7.5.4