You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by th...@apache.org on 2021/12/15 10:27:58 UTC

[arrow] branch master updated: ARROW-15103: [Documentation][C++] Error building docs: "arrow/cpp/src/arrow/csv/options.h:182: error: Found unknown command '\r' "

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

thisisnic 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 48bffc2  ARROW-15103: [Documentation][C++] Error building docs: "arrow/cpp/src/arrow/csv/options.h:182: error: Found unknown command '\r' "
48bffc2 is described below

commit 48bffc29938cdf51235a4d9272c54262ebf42e27
Author: Nic Crane <th...@gmail.com>
AuthorDate: Wed Dec 15 10:26:22 2021 +0000

    ARROW-15103: [Documentation][C++] Error building docs: "arrow/cpp/src/arrow/csv/options.h:182: error: Found unknown command '\r' "
    
    This PR fixes a minor error in the C++ documentation which prevents it from building.
    
    (I would have just submitted the PR as [MINOR] but I'd already opened the ticket!)
    
    Closes #11952 from thisisnic/ARROW-15103_cpp_docs
    
    Authored-by: Nic Crane <th...@gmail.com>
    Signed-off-by: Nic Crane <th...@gmail.com>
---
 cpp/src/arrow/csv/options.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/src/arrow/csv/options.h b/cpp/src/arrow/csv/options.h
index f5cd97c..c1c686f 100644
--- a/cpp/src/arrow/csv/options.h
+++ b/cpp/src/arrow/csv/options.h
@@ -179,7 +179,7 @@ enum class ARROW_EXPORT QuotingStyle {
   /// interpret all values as strings if schema is inferred.
   AllValid,
   /// Do not enclose any values in quotes. Prevents values from containing quotes ("),
-  /// cell delimiters (,) or line endings (\r, \n), (following RFC4180). If values
+  /// cell delimiters (,) or line endings (\\r, \\n), (following RFC4180). If values
   /// contain these characters, an error is caused when attempting to write.
   None
 };