Skip to content

Commit

Permalink
ah yes i need to save the file
Browse files Browse the repository at this point in the history
  • Loading branch information
Mishura4 committed Oct 6, 2023
1 parent 6addfb8 commit 1c2f625
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/dpp/snowflake.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class DPP_EXPORT snowflake final {
/**
* @brief Construct a snowflake from an integer value
*
* @throw dpp::logic_exception on assigning a negative value. the function is noexcept if the type given is unsigned
* @throw dpp::logic_exception on assigning a negative value. The function is noexcept if the type given is unsigned
* @param snowflake_val snowflake value as an integer type
*/
template <typename T, typename = std::enable_if_t<std::is_integral_v<T>>>
Expand Down Expand Up @@ -127,7 +127,7 @@ class DPP_EXPORT snowflake final {
/**
* @brief Assign integer value to the snowflake
*
* @throw dpp::logic_exception on assigning a negative value. the function is noexcept if the type given is unsigned
* @throw dpp::logic_exception on assigning a negative value. The function is noexcept if the type given is unsigned
* @param snowflake_val snowflake value as an integer type
*/
template <typename T, typename = std::enable_if_t<std::is_integral_v<T>>>
Expand Down

0 comments on commit 1c2f625

Please sign in to comment.