summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorKonrad Grochowski <hcorg@apache.org>2014-11-24 10:55:31 +0100
committerKonrad Grochowski <hcorg@apache.org>2014-11-24 10:55:31 +0100
commit3b5dacba44e4fa5c07c8b828d2f65215f9c91e34 (patch)
tree56fb134a0cd9cadbdd034af8de6ffdb31ae50ef8 /contrib
parenteab29a0da9eb775bb7e1e7cff6b4eeaecf237151 (diff)
downloadthrift-3b5dacba44e4fa5c07c8b828d2f65215f9c91e34.tar.gz
THRIFT-2849: spelling errors fixed using codespell tool
Client: All Patch: Anatol Pomozov This closes #281
Diffstat (limited to 'contrib')
-rw-r--r--contrib/fb303/TClientInfo.h2
-rw-r--r--contrib/fb303/aclocal/ax_javac_and_java.m42
-rwxr-xr-xcontrib/parse_profiling.py2
-rw-r--r--contrib/thrift-maven-plugin/src/main/java/org/apache/thrift/maven/AbstractThriftMojo.java2
-rw-r--r--contrib/vagrant/centos-6.5/README.md2
-rw-r--r--contrib/zeromq/csharp/TZmqClient.cs2
6 files changed, 6 insertions, 6 deletions
diff --git a/contrib/fb303/TClientInfo.h b/contrib/fb303/TClientInfo.h
index d0a977025..6668c1921 100644
--- a/contrib/fb303/TClientInfo.h
+++ b/contrib/fb303/TClientInfo.h
@@ -192,7 +192,7 @@ class TClientInfoConnection {
/**
* Return as string the thrift call either currently being processed or
- * most recently processed if the connection is still open for additonal
+ * most recently processed if the connection is still open for additional
* calls. Returns NULL if a call hasn't been made yet or processing
* has ended.
*/
diff --git a/contrib/fb303/aclocal/ax_javac_and_java.m4 b/contrib/fb303/aclocal/ax_javac_and_java.m4
index fdb4bf005..581b45066 100644
--- a/contrib/fb303/aclocal/ax_javac_and_java.m4
+++ b/contrib/fb303/aclocal/ax_javac_and_java.m4
@@ -7,7 +7,7 @@ dnl If "JAVA" is defined in the environment, that will be the only
dnl java command tested. Otherwise, a hard-coded list will be used.
dnl Similarly for "JAVAC".
dnl
-dnl AX_JAVAC_AND_JAVA does not currenly support testing for a particular
+dnl AX_JAVAC_AND_JAVA does not currently support testing for a particular
dnl Java version, testing for only one of "java" and "javac", or
dnl compiling or running user-provided Java code.
dnl
diff --git a/contrib/parse_profiling.py b/contrib/parse_profiling.py
index 52d221176..3d46fb832 100755
--- a/contrib/parse_profiling.py
+++ b/contrib/parse_profiling.py
@@ -42,7 +42,7 @@ class AddressInfo(object):
self.address = address
self.sourceFile = None
self.sourceLine = None
- self.funtion = None
+ self.function = None
g_addrs_by_filename = {}
diff --git a/contrib/thrift-maven-plugin/src/main/java/org/apache/thrift/maven/AbstractThriftMojo.java b/contrib/thrift-maven-plugin/src/main/java/org/apache/thrift/maven/AbstractThriftMojo.java
index a3b5af6c4..63451c306 100644
--- a/contrib/thrift-maven-plugin/src/main/java/org/apache/thrift/maven/AbstractThriftMojo.java
+++ b/contrib/thrift-maven-plugin/src/main/java/org/apache/thrift/maven/AbstractThriftMojo.java
@@ -193,7 +193,7 @@ abstract class AbstractThriftMojo extends AbstractMojo {
attachFiles();
}
} catch (IOException e) {
- throw new MojoExecutionException("An IO error occured", e);
+ throw new MojoExecutionException("An IO error occurred", e);
} catch (IllegalArgumentException e) {
throw new MojoFailureException("thrift failed to execute because: " + e.getMessage(), e);
} catch (CommandLineException e) {
diff --git a/contrib/vagrant/centos-6.5/README.md b/contrib/vagrant/centos-6.5/README.md
index 3d1dc0746..76dca4439 100644
--- a/contrib/vagrant/centos-6.5/README.md
+++ b/contrib/vagrant/centos-6.5/README.md
@@ -15,7 +15,7 @@ This will download and launch the base box VM under VirtualBox and run the Apach
The provisioning script (inside the Vagrantfile) runs ./bootstrap.sh, ./configure, make and make check, but does not install thrift. To install thrift run "make install".
-The Vagrant base box used here is a minimal Centos 6.5 VirtualBox with 2GB RAM and 2 CPUs. For more Vagrant information: https://www.vagrantup.com. A summary of the base box preperation follows:
+The Vagrant base box used here is a minimal Centos 6.5 VirtualBox with 2GB RAM and 2 CPUs. For more Vagrant information: https://www.vagrantup.com. A summary of the base box preparation follows:
root password: vagrant
diff --git a/contrib/zeromq/csharp/TZmqClient.cs b/contrib/zeromq/csharp/TZmqClient.cs
index c792882cd..e9ab5166a 100644
--- a/contrib/zeromq/csharp/TZmqClient.cs
+++ b/contrib/zeromq/csharp/TZmqClient.cs
@@ -47,7 +47,7 @@ namespace ZmqClient
throw new NotImplementedException ();
if (_rbuf.Length == 0) {
- //Fill the Buffer with the complete ZMQ Message which needs to be(?!) the complete Thrift reponse
+ //Fill the Buffer with the complete ZMQ Message which needs to be(?!) the complete Thrift response
debug ("Client_Read Filling buffer..");
byte[] tmpBuf = _sock.Recv ();
debug (string.Format("Client_Read filled with {0}b",tmpBuf.Length));