From 0a947e7fdcbaa9e6520ff40c42e32d85ef88d729 Mon Sep 17 00:00:00 2001 From: David Gardner <96306125+dagardner-nv@users.noreply.github.com> Date: Fri, 8 Apr 2022 13:05:27 -0700 Subject: [PATCH 1/2] Fix type-o in docstring for json_reader_options --- cpp/include/cudf/io/json.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/include/cudf/io/json.hpp b/cpp/include/cudf/io/json.hpp index 727c24a4431..5660bb390cf 100644 --- a/cpp/include/cudf/io/json.hpp +++ b/cpp/include/cudf/io/json.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020, NVIDIA CORPORATION. + * Copyright (c) 2020-2022, NVIDIA CORPORATION. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -45,7 +45,7 @@ class json_reader_options_builder; * @brief Input arguments to the `read_json` interface. * * Available parameters and are closely patterned after PANDAS' `read_json` API. - * Not all parameters are unsupported. If the matching PANDAS' parameter + * Not all parameters are supported. If the matching PANDAS' parameter * has a default value of `None`, then a default value of `-1` or `0` may be * used as the equivalent. * From fb4319a72732aa8adb46ee575b47f3b255a09c9c Mon Sep 17 00:00:00 2001 From: David Gardner <96306125+dagardner-nv@users.noreply.github.com> Date: Fri, 8 Apr 2022 13:39:29 -0700 Subject: [PATCH 2/2] Update cpp/include/cudf/io/json.hpp Co-authored-by: Yunsong Wang --- cpp/include/cudf/io/json.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/include/cudf/io/json.hpp b/cpp/include/cudf/io/json.hpp index 5660bb390cf..e2d4de83b49 100644 --- a/cpp/include/cudf/io/json.hpp +++ b/cpp/include/cudf/io/json.hpp @@ -44,7 +44,7 @@ class json_reader_options_builder; /** * @brief Input arguments to the `read_json` interface. * - * Available parameters and are closely patterned after PANDAS' `read_json` API. + * Available parameters are closely patterned after PANDAS' `read_json` API. * Not all parameters are supported. If the matching PANDAS' parameter * has a default value of `None`, then a default value of `-1` or `0` may be * used as the equivalent.