Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5CE11200BC5 for ; Tue, 8 Nov 2016 02:36:42 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5B52D160AF9; Tue, 8 Nov 2016 01:36:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A25F9160AEC for ; Tue, 8 Nov 2016 02:36:41 +0100 (CET) Received: (qmail 50415 invoked by uid 500); 8 Nov 2016 01:36:40 -0000 Mailing-List: contact commits-help@cassandra.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cassandra.apache.org Delivered-To: mailing list commits@cassandra.apache.org Received: (qmail 50404 invoked by uid 99); 8 Nov 2016 01:36:40 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Nov 2016 01:36:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AC8C6E0AF6; Tue, 8 Nov 2016 01:36:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mck@apache.org To: commits@cassandra.apache.org Message-Id: <3697ee9c109c481cbd051584f8621f3a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cassandra git commit: Correct Spelling Errors in IEndPointSnitch JavaDocs Date: Tue, 8 Nov 2016 01:36:40 +0000 (UTC) archived-at: Tue, 08 Nov 2016 01:36:42 -0000 Repository: cassandra Updated Branches: refs/heads/trunk 459946aee -> 138f7b5d0 Correct Spelling Errors in IEndPointSnitch JavaDocs Patch by Christopher Licata ; reviewed by Mick Semb Wever for CASSANDRA-12855 This closes #79 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/138f7b5d Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/138f7b5d Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/138f7b5d Branch: refs/heads/trunk Commit: 138f7b5d005c9554e9c87a7fa03df23c32d551a4 Parents: 459946a Author: Mick Semb Wever Authored: Tue Nov 8 12:32:03 2016 +1100 Committer: Mick Semb Wever Committed: Tue Nov 8 12:32:03 2016 +1100 ---------------------------------------------------------------------- src/java/org/apache/cassandra/locator/IEndpointSnitch.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/138f7b5d/src/java/org/apache/cassandra/locator/IEndpointSnitch.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/cassandra/locator/IEndpointSnitch.java b/src/java/org/apache/cassandra/locator/IEndpointSnitch.java index 690b84f..71b441c 100644 --- a/src/java/org/apache/cassandra/locator/IEndpointSnitch.java +++ b/src/java/org/apache/cassandra/locator/IEndpointSnitch.java @@ -22,15 +22,15 @@ import java.util.Collection; import java.util.List; /** - * This interface helps determine location of node in the data center relative to another node. + * This interface helps determine location of node in the datacenter relative to another node. * Give a node A and another node B it can tell if A and B are on the same rack or in the same - * data center. + * datacenter. */ public interface IEndpointSnitch { /** - * returns a String repesenting the rack this endpoint belongs to + * returns a String representing the rack this endpoint belongs to */ public String getRack(InetAddress endpoint);