From 920bed700060e307dee5b4469590b8b0f259a2c4 Mon Sep 17 00:00:00 2001 From: Alex Barghi <105237337+alexbarghi-nv@users.noreply.github.com> Date: Mon, 25 Sep 2023 12:16:05 -0400 Subject: [PATCH] docstring correction Co-authored-by: Tingyu Wang --- cpp/include/cugraph_c/sampling_algorithms.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/include/cugraph_c/sampling_algorithms.h b/cpp/include/cugraph_c/sampling_algorithms.h index 193333e3a7d..92fe50ef622 100644 --- a/cpp/include/cugraph_c/sampling_algorithms.h +++ b/cpp/include/cugraph_c/sampling_algorithms.h @@ -217,7 +217,7 @@ typedef enum cugraph_compression_type_t { DCSR, /** Compresses in DCSR format. This outputs an additional index that avoids empty entries in the row pointer. */ DCSC /** Compresses in DCSC format. This outputs an additional index - that avoid empty entries in the row pointer. */ + that avoid empty entries in the col pointer. */ } cugraph_compression_type_t; /**