Skip to content

Commit 7e14b09

Browse files
authored
Update README.md
1 parent 94b18fb commit 7e14b09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ where native_t may be one of base unsigned type and size must by power of two.
2828

2929
[long_math_gcc.h](include/long_math_gcc.h) - GCC, CLANG helper classes and functions
3030

31-
[long_math_gcc.h](include/long_math_msvc.h) - MSVC helper classes and functions
31+
[long_math_msvc.h](include/long_math_msvc.h) - MSVC helper classes and functions
3232
## Integration
3333
The library implements four predefined types: uint128_t, uint256_t, int128_t, int256_t. You can use them in you project by include code below:
3434
```c++
@@ -76,7 +76,7 @@ long_uint_t type supports following operators:
7676
long_int_t type supports following operators:
7777
`==, !=, <, <=, >, >=, <<=, <<, >>=, >>, +=, +, ++, -=, -, --, *=, *, /=, /, %=, %`
7878
## MulDiv
79-
The library implements the muldiv method for faster calculation of the following expressions: (a * b / b). It can be used with signed and unsigned integers.
79+
The library implements the muldiv method for faster calculation of the following expressions: (a * b / c). It can be used with signed and unsigned integers.
8080
```c++
8181
template<typename type_t>
8282
constexpr type_t muldiv(const type_t& value, const type_t& multiplier, const type_t& divider) noexcept;

0 commit comments

Comments
 (0)