You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/08/09 16:05:07 UTC

[arrow] branch master updated: ARROW-3015: [Python] Fix typo in uint8() docstring

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

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


The following commit(s) were added to refs/heads/master by this push:
     new aff1dca  ARROW-3015: [Python] Fix typo in uint8() docstring
aff1dca is described below

commit aff1dcabb73e2564faad8210df7735632c229177
Author: Antoine Pitrou <an...@python.org>
AuthorDate: Thu Aug 9 12:05:00 2018 -0400

    ARROW-3015: [Python] Fix typo in uint8() docstring
    
    Author: Antoine Pitrou <an...@python.org>
    
    Closes #2414 from pitrou/ARROW-3015-uint8-doc-typo and squashes the following commits:
    
    8a418ade <Antoine Pitrou> ARROW-3015:  Fix typo in uint8() docstring
---
 python/pyarrow/types.pxi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/pyarrow/types.pxi b/python/pyarrow/types.pxi
index 1e13cef..044423b 100644
--- a/python/pyarrow/types.pxi
+++ b/python/pyarrow/types.pxi
@@ -855,7 +855,7 @@ def bool_():
 
 def uint8():
     """
-    Create instance of boolean type
+    Create instance of unsigned int8 type
     """
     return primitive_type(_Type_UINT8)