Skip to content

Commit

Permalink
update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
jnke2016 committed Sep 26, 2024
1 parent fabcb37 commit 3b1c1d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cpp/src/c_api/graph_mg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ extern "C" cugraph_error_code_t cugraph_graph_create_mg(
CAPI_EXPECTS(
(properties->is_symmetric == TRUE),
CUGRAPH_INVALID_INPUT,
"Invalid input arguments: The graph property must be symmetric if symmetrize is set to True.",
"Invalid input arguments: The graph property must be symmetric if 'symmetrize' is set to True.",
*error);
}

Expand Down
4 changes: 2 additions & 2 deletions cpp/src/c_api/graph_sg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ extern "C" cugraph_error_code_t cugraph_graph_create_sg(
CAPI_EXPECTS(
(properties->is_symmetric == TRUE),
CUGRAPH_INVALID_INPUT,
"Invalid input arguments: The graph property must be symmetric if symmetrize is set to True.",
"Invalid input arguments: The graph property must be symmetric if 'symmetrize' is set to True.",
*error);
}

Expand Down Expand Up @@ -761,7 +761,7 @@ cugraph_error_code_t cugraph_graph_create_sg_from_csr(
CAPI_EXPECTS(
(properties->is_symmetric == TRUE),
CUGRAPH_INVALID_INPUT,
"Invalid input arguments: The graph property must be symmetric if symmetrize is set to True.",
"Invalid input arguments: The graph property must be symmetric if 'symmetrize' is set to True.",
*error);
}

Expand Down

0 comments on commit 3b1c1d0

Please sign in to comment.