From 93147e6d38081a54b92cb20a0eaf58b2373a644b Mon Sep 17 00:00:00 2001 From: billschereriii Date: Thu, 7 Dec 2023 14:33:56 -0600 Subject: [PATCH] Fix missing space --- doc/changelog.rst | 3 +++ src/cpp/client.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index f66f6053..1c9a1c5d 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -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 @@ -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_) @@ -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 diff --git a/src/cpp/client.cpp b/src/cpp/client.cpp index f105b9fc..c6a18132 100644 --- a/src/cpp/client.cpp +++ b/src/cpp/client.cpp @@ -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."); }