Skip to content

Commit

Permalink
Fix docs typo, bump version for bugfix release v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
saxbophone committed May 25, 2022
1 parent db52e4b commit e9452e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion arby/include/arby/Nat.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<Nat, Nat> divmod(const Nat& lhs, const Nat& rhs) {
Expand Down

0 comments on commit e9452e3

Please sign in to comment.