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

alamb pushed a commit to branch production
in repository https://gitbox.apache.org/repos/asf/parquet-site.git


The following commit(s) were added to refs/heads/production by this push:
     new a506efc  Minor: Fix various typos on the site (#133)
a506efc is described below

commit a506efc9d2d708e86709841311f3220d828fb4cf
Author: Andrew Lamb <[email protected]>
AuthorDate: Wed Nov 12 06:31:27 2025 -0500

    Minor: Fix various typos on the site (#133)
---
 README.md                                               | 2 +-
 content/en/_index.md                                    | 4 ++--
 content/en/docs/Contribution Guidelines/contributing.md | 4 ++--
 content/en/docs/File Format/Data Pages/encodings.md     | 2 +-
 content/en/docs/File Format/Data Pages/encryption.md    | 2 +-
 content/en/docs/Overview/_index.md                      | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 9656e06..ad89cbb 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ npm install -D postcss-cli
 npm install -D postcss
 ```
 
-To preview this website site locally, run the following in the root of the 
directory:
+To preview this website locally, run the following in the root of the 
directory:
 
 ```shell
 hugo server
diff --git a/content/en/_index.md b/content/en/_index.md
index 6da4ef0..274837f 100644
--- a/content/en/_index.md
+++ b/content/en/_index.md
@@ -11,7 +11,7 @@ title: Parquet
 </a>
 <p class="lead mt-5">
 Apache Parquet is an open source, column-oriented data file format designed 
for efficient data storage and retrieval. 
-It provides high performance compression and encoding schemes to handle 
complex data in bulk and is supported in many programming language and 
analytics tools.
+It provides high performance compression and encoding schemes to handle 
complex data in bulk and is supported in many programming languages and 
analytics tools.
 </p>
 {{< blocks/link-down color="info" >}}
 {{< /blocks/cover >}}
@@ -28,7 +28,7 @@ We do a [Pull 
Request](https://github.com/apache/parquet-java/pulls) contributio
 
 
 {{% blocks/feature icon="fab fa-twitter" title="Follow us on Twitter!" 
url="https://twitter.com/ApacheParquet"; %}}
-For announcement of latest features etc.
+For announcements of latest features etc.
 {{% /blocks/feature %}}
 
 {{% /blocks/section %}}
\ No newline at end of file
diff --git a/content/en/docs/Contribution Guidelines/contributing.md 
b/content/en/docs/Contribution Guidelines/contributing.md
index 9d4b850..92a3fe6 100644
--- a/content/en/docs/Contribution Guidelines/contributing.md   
+++ b/content/en/docs/Contribution Guidelines/contributing.md   
@@ -38,7 +38,7 @@ Parquet-Java leverages [semantic 
versioning](https://semver.org/#semantic-versio
 All interfaces, classes, and methods targeted for deprecation must include the 
following:
 
 - `@Deprecated` annotation on the appropriate element
-- `@depreceted` javadoc comment including: the version for removal, the 
appropriate alternative for usage
+- `@deprecated` javadoc comment including: the version for removal, the 
appropriate alternative for usage
 - Replacement of existing code paths that use the deprecated behavior
 
 ```java
@@ -72,7 +72,7 @@ git remote add github-apache 
[email protected]:apache/parquet-java.git
 Now you can cherry-pick a PR to a previous branch:
 
 ```sh
-get fetch --all
+git fetch --all
 git checkout parquet-1.14.x
 git reset --hard github-apache/parquet-1.14.x
 git cherry-pick <hash-from-the-commit>
diff --git a/content/en/docs/File Format/Data Pages/encodings.md 
b/content/en/docs/File Format/Data Pages/encodings.md
index 5f6429f..775e58b 100644
--- a/content/en/docs/File Format/Data Pages/encodings.md       
+++ b/content/en/docs/File Format/Data Pages/encodings.md       
@@ -12,7 +12,7 @@ Supported Types: all
 This is the plain encoding that must be supported for types.  It is
 intended to be the simplest encoding.  Values are encoded back to back.
 
-The plain encoding is used whenever a more efficient encoding can not be used. 
It
+The plain encoding is used whenever a more efficient encoding cannot be used. 
It
 stores the data in the following format:
  - BOOLEAN: [Bit Packed](#BITPACKED), LSB first
  - INT32: 4 bytes little endian
diff --git a/content/en/docs/File Format/Data Pages/encryption.md 
b/content/en/docs/File Format/Data Pages/encryption.md
index 62f803e..ec923ea 100644
--- a/content/en/docs/File Format/Data Pages/encryption.md      
+++ b/content/en/docs/File Format/Data Pages/encryption.md      
@@ -453,7 +453,7 @@ because it is not required for footer integrity 
verification by readers.
 |------------------|-----------------|
 
 
-The plaintext footer mode sets the following fields in the the FileMetaData 
structure:
+The plaintext footer mode sets the following fields in the FileMetaData 
structure:
 
 ```c
 struct FileMetaData {
diff --git a/content/en/docs/Overview/_index.md 
b/content/en/docs/Overview/_index.md
index 9bcf463..ac9d280 100644
--- a/content/en/docs/Overview/_index.md
+++ b/content/en/docs/Overview/_index.md
@@ -7,7 +7,7 @@ description: >
 ---
 
 Apache Parquet is an open source, column-oriented data file format designed 
for efficient data storage and retrieval.
-It provides high performance compression and encoding schemes to handle 
complex data in bulk and is supported in many programming language and 
analytics tools.
+It provides high performance compression and encoding schemes to handle 
complex data in bulk and is supported in many programming languages and 
analytics tools.
 
 
 ### parquet-format (Specification)

Reply via email to