You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by uw...@apache.org on 2018/05/03 06:55:14 UTC

[arrow] branch master updated: [C++] Fix a typo in cpplint (#1986)

This is an automated email from the ASF dual-hosted git repository.

uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new f75bbc0  [C++] Fix a typo in cpplint (#1986)
f75bbc0 is described below

commit f75bbc0acd8860329bc30d8aedc5da77ce173ce3
Author: 284km <k....@gmail.com>
AuthorDate: Thu May 3 15:55:12 2018 +0900

    [C++] Fix a typo in cpplint (#1986)
    
    s/seperated/separated
    This PR imports google/styleguide#348.
---
 cpp/build-support/cpplint.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cpp/build-support/cpplint.py b/cpp/build-support/cpplint.py
index 95c0c32..62a22d6 100755
--- a/cpp/build-support/cpplint.py
+++ b/cpp/build-support/cpplint.py
@@ -6381,13 +6381,13 @@ def ParseArguments(args):
       try:
         _valid_extensions = set(val.split(','))
       except ValueError:
-          PrintUsage('Extensions must be comma seperated list.')
+          PrintUsage('Extensions must be comma separated list.')
     elif opt == '--headers':
       global _header_extensions
       try:
           _header_extensions = set(val.split(','))
       except ValueError:
-        PrintUsage('Extensions must be comma seperated list.')
+        PrintUsage('Extensions must be comma separated list.')
     elif opt == '--recursive':
       recursive = True
     elif opt == '--quiet':

-- 
To stop receiving notification emails like this one, please contact
uwe@apache.org.