From e9452e31178241ba0b519354a0bd83d2682bf9a1 Mon Sep 17 00:00:00 2001 From: Joshua Saxby Date: Wed, 25 May 2022 09:50:51 +0100 Subject: [PATCH] Fix docs typo, bump version for bugfix release v0.3.1 --- CMakeLists.txt | 2 +- arby/include/arby/Nat.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 02cde60..6f227bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ else() set(ARBY_SUBPROJECT ON) endif() -project(arby VERSION 0.3.0 LANGUAGES CXX) +project(arby VERSION 0.3.1 LANGUAGES CXX) find_program(CCACHE_PROGRAM ccache) if(CCACHE_PROGRAM) diff --git a/arby/include/arby/Nat.hpp b/arby/include/arby/Nat.hpp index 78e3283..73498e7 100644 --- a/arby/include/arby/Nat.hpp +++ b/arby/include/arby/Nat.hpp @@ -498,7 +498,7 @@ namespace com::saxbophone::arby { /** * @brief division and modulo all-in-one, equivalent to C/C++ div() and Python divmod() * @param lhs,rhs operands for the division/modulo operation - * @returns tuple of {quotient, remainder} + * @returns pair of {quotient, remainder} * @throws std::domain_error when rhs is zero */ static constexpr std::pair divmod(const Nat& lhs, const Nat& rhs) {