Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobo1 committed May 19, 2024
1 parent 130ed93 commit 7997f81
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ ninja

## Dependencies
* [Microsoft/GSL](https://github.com/Microsoft/GSL) \
This library is only requried when compiling with C++14 and C++17. In C++20 or later,
This library is only required when compiling with C++14 and C++17. In C++20 or later,
`std::span` will be used in place of `gsl::span`. \
No need to download or install it. This repository included a modified version that will
compile locally (only for `gsl::span` related headers).
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ripemd_128.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TEST_CASE("ripemd-128") // NOLINT
{
using Hash = Chocobo1::RIPEMD_128;

// official test suite from ripemd-160 webiste
// official test suite from ripemd-160 website
const char s1[] = "";
REQUIRE("cdf26213a150dc3ecb610f18f6b38b46" == Hash().addData(s1, strlen(s1)).finalize().toString());

Expand Down
2 changes: 1 addition & 1 deletion tests/test_ripemd_160.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TEST_CASE("ripemd-160") // NOLINT
{
using Hash = Chocobo1::RIPEMD_160;

// official test suite from ripemd-160 webiste
// official test suite from ripemd-160 website
const char s1[] = "";
REQUIRE("9c1185a5c5e9fc54612808977ee8f548b2258d31" == Hash().addData(s1, strlen(s1)).finalize().toString());

Expand Down
2 changes: 1 addition & 1 deletion tests/test_ripemd_256.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TEST_CASE("ripemd-256") // NOLINT
{
using Hash = Chocobo1::RIPEMD_256;

// official test suite from ripemd-160 webiste
// official test suite from ripemd-160 website
const char s1[] = "";
REQUIRE("02ba4c4e5f8ecd1877fc52d64d30e37a2d9774fb1e5d026380ae0168e3c5522d" == Hash().addData(s1, strlen(s1)).finalize().toString());

Expand Down
2 changes: 1 addition & 1 deletion tests/test_ripemd_320.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TEST_CASE("ripemd-320") // NOLINT
{
using Hash = Chocobo1::RIPEMD_320;

// official test suite from ripemd-160 webiste
// official test suite from ripemd-160 website
const char s1[] = "";
REQUIRE("22d65d5661536cdc75c1fdf5c6de7b41b9f27325ebc61e8557177d705a0ec880151c3a32a00899b8" == Hash().addData(s1, strlen(s1)).finalize().toString());

Expand Down

0 comments on commit 7997f81

Please sign in to comment.