You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2022/11/11 00:22:19 UTC

[arrow-site] branch master updated: Tweak sort copy (#271)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e8d692bc1b Tweak sort copy (#271)
e8d692bc1b is described below

commit e8d692bc1bfcf357f1fce0ed3f14249d65cb329c
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Fri Nov 11 13:22:13 2022 +1300

    Tweak sort copy (#271)
---
 _posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-1.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/_posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-1.md b/_posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-1.md
index 1b3a6f89f0..bfe9cc4ddf 100644
--- a/_posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-1.md
+++ b/_posts/2022-11-07-multi-column-sorts-in-arrow-rust-part-1.md
@@ -35,10 +35,10 @@ In this series we explain in detail the new [row format](https://docs.rs/arrow/2
 
 ## Multicolumn / Lexicographical Sort Problem
 
-Most languages have native, optimized operations to sort a single column (array) of data, which are specialized based on the type of data being sorted. The reason that sorting is typically more challenging in analytic systems is that it must:
+Most languages have native, optimized operations to sort a single column (array) of data, which are specialized based on the type of data being sorted. The reason that sorting is typically more challenging in analytic systems is that:
 
 1. They must support multiple columns of data
-2. The column types are not knowable at compile time, and thus the compiler can not typically generate optimized code.
+2. The column types are not knowable at compile time, and thus the compiler can not typically generate optimized code
 
 Multicolumn sorting is also referred to as lexicographical sorting in some libraries.