Skip to content

Commit

Permalink
Fix missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
billschereriii committed Dec 7, 2023
1 parent 8ba2c40 commit 93147e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ To be released at some future point in time

Description

- Added a missing space in an error message
- Improved consistency of namespace declarations for C++ pybind interface
- Improved const correctness of C++ Client
- Improved const correctness of C++ Dataset
Expand All @@ -33,6 +34,7 @@ Description

Detailed Notes

- Added a missing space in an error message (PR435_)
- Made the declaration of the py namespace in py*.h consistently outside the SmartRedis namespace declaration (PR434_)
- Fields in several C++ API methods are now properly marked as const (PR430_)
- The Dataset add_tensor method is now const correct, as are all internal the methods it calls (PR427_)
Expand All @@ -55,6 +57,7 @@ Detailed Notes
- Create CONTRIBUTIONS.md file that points to the contribution guideline for both SmartSim and SmartRedis (PR395_)
- Migrated to ConfigOptions-based Client construction, adding multiple database support (PR353_)

.. _PR435: https://github.com/CrayLabs/SmartRedis/pull/435
.. _PR434: https://github.com/CrayLabs/SmartRedis/pull/434
.. _PR430: https://github.com/CrayLabs/SmartRedis/pull/430
.. _PR427: https://github.com/CrayLabs/SmartRedis/pull/427
Expand Down
2 changes: 1 addition & 1 deletion src/cpp/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1238,7 +1238,7 @@ void Client::set_data_source(std::string source_id)
if (!valid_prefix) {
throw SRRuntimeException("Client error: data source " +
std::string(source_id) +
"could not be found during client "+
" could not be found during client "+
"initialization.");
}

Expand Down

0 comments on commit 93147e6

Please sign in to comment.