You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ho...@apache.org on 2022/02/23 07:04:10 UTC

[arrow-datafusion] branch master updated: fix link in python docs index.rst (#1874)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 43c64d9  fix link in python docs index.rst (#1874)
43c64d9 is described below

commit 43c64d9e5c0a1d4cd3097aa3cd353cba3857af02
Author: Gaurav Sheni <gv...@gmail.com>
AuthorDate: Wed Feb 23 02:03:10 2022 -0500

    fix link in python docs index.rst (#1874)
---
 docs/source/python/index.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/source/python/index.rst b/docs/source/python/index.rst
index 57ab8d1..9722186 100644
--- a/docs/source/python/index.rst
+++ b/docs/source/python/index.rst
@@ -27,7 +27,7 @@ It also allows you to use UDFs and UDAFs for complex operations.
 
 The major advantage of this library over other execution engines is that this library achieves zero-copy between Python and its execution engine: there is no cost in using UDFs, UDAFs, and collecting the results to Python apart from having to lock the GIL when running those operations.
 
-Its query engine, DataFusion, is written in `Rust <https://www.rust-lang.org>`_), which makes strong assumptions about thread safety and lack of memory leaks.
+Its query engine, DataFusion, is written in `Rust <https://www.rust-lang.org>`_, which makes strong assumptions about thread safety and lack of memory leaks.
 
 Technically, zero-copy is achieved via the `c data interface <https://arrow.apache.org/docs/format/CDataInterface.html>`_.