Skip to content

Commit e9452e3

Browse files
committed
Fix docs typo, bump version for bugfix release v0.3.1
1 parent db52e4b commit e9452e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ else()
99
set(ARBY_SUBPROJECT ON)
1010
endif()
1111

12-
project(arby VERSION 0.3.0 LANGUAGES CXX)
12+
project(arby VERSION 0.3.1 LANGUAGES CXX)
1313

1414
find_program(CCACHE_PROGRAM ccache)
1515
if(CCACHE_PROGRAM)

arby/include/arby/Nat.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ namespace com::saxbophone::arby {
498498
/**
499499
* @brief division and modulo all-in-one, equivalent to C/C++ div() and Python divmod()
500500
* @param lhs,rhs operands for the division/modulo operation
501-
* @returns tuple of {quotient, remainder}
501+
* @returns pair of {quotient, remainder}
502502
* @throws std::domain_error when rhs is zero
503503
*/
504504
static constexpr std::pair<Nat, Nat> divmod(const Nat& lhs, const Nat& rhs) {

0 commit comments

Comments
 (0)