Skip to content

Commit

Permalink
Small documentation correction in example
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Oct 23, 2023
1 parent b4f43f9 commit 6ec0f70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiledb/sm/cpp_api/query_experimental.h
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class QueryExperimental {
*
* uint64_t count = 0;
* uint64_t size = sizeof(uint64_t);
* query.set_data_buffer("Count", &count, &size)
* query.set_data_buffer("Count", &count, size);
* query.submit();
* @endcode
*
Expand Down Expand Up @@ -396,7 +396,7 @@ class QueryExperimental {
*
* double sum = 0;
* uint64_t size = sizeof(double);
* query.set_data_buffer("Sum", &sum, &size)
* query.set_data_buffer("Sum", &sum, size);
* query.submit();
* @endcode
*
Expand Down

0 comments on commit 6ec0f70

Please sign in to comment.