This is an automated email from the ASF dual-hosted git repository.
rskraba pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/branch-1.11 by this push:
new a50eb40 Minor non functional changes (#1378)
a50eb40 is described below
commit a50eb40f1559a0b71a52a2dd304092c68d952287
Author: Martin Grigorov <[email protected]>
AuthorDate: Tue Dec 21 20:47:11 2021 +0200
Minor non functional changes (#1378)
* Spelling fixes in comments
* Ignore Maven JVM config file and IDEA Run configurations
---
.gitignore | 2 ++
lang/c++/test/CodecTests.cc | 2 +-
lang/csharp/build.sh | 2 +-
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/.gitignore b/.gitignore
index fd46be4..437a035 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,3 +28,5 @@ test-output
vendor
composer.lock
.phpunit.result.cache
+.mvn/jvm.config # Maven JVM settings
+**/*.run.xml # Intellij IDEA Run configurations
diff --git a/lang/c++/test/CodecTests.cc b/lang/c++/test/CodecTests.cc
index a99cdd6..7d11416 100644
--- a/lang/c++/test/CodecTests.cc
+++ b/lang/c++/test/CodecTests.cc
@@ -68,7 +68,7 @@ static const unsigned int count = 10;
* promote data type, convert from union to plain data type and vice versa,
* insert or remove fields in records or reorder fields in a record.
*
- * To test Json encoder and decoder, we use the same technqiue with only
+ * To test Json encoder and decoder, we use the same technique with only
* one difference - we use JsonEncoder and JsonDecoder.
*
* We also use the same infrastructure to test GenericReader and GenericWriter.
diff --git a/lang/csharp/build.sh b/lang/csharp/build.sh
index fefbe28..5e62ad2 100755
--- a/lang/csharp/build.sh
+++ b/lang/csharp/build.sh
@@ -35,7 +35,7 @@ do
test)
dotnet build --configuration Release Avro.sln
- # AVRO-2442: Explictly set LANG to work around ICU bug in `dotnet test`
+ # AVRO-2442: Explicitly set LANG to work around ICU bug in `dotnet test`
LANG=en_US.UTF-8 dotnet test --configuration Release --no-build \
--filter "TestCategory!=Interop" Avro.sln
;;