denoland / std

The Deno Standard Library
https://jsr.io/@std
MIT License
3.21k stars 621 forks source link

test(bytes): fix typo in test description #6179

Closed BinskLee closed 1 week ago

BinskLee commented 1 week ago

Fix typo in test description.

CLAassistant commented 1 week ago

CLA assistant check
All committers have signed the CLA.

codecov[bot] commented 1 week ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 96.49%. Comparing base (bf0ad52) to head (3456776). Report is 1 commits behind head on main.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #6179 +/- ## ======================================= Coverage 96.48% 96.49% ======================================= Files 535 535 Lines 41281 41281 Branches 6163 6163 ======================================= + Hits 39832 39833 +1 + Misses 1405 1404 -1 Partials 44 44 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

kt3k commented 1 week ago

a bit curious why this wasn't caught by our typo checker in CI

BinskLee commented 1 week ago

@kt3k I think it's because of the following line, clearing that setting caught the wrong typo. https://github.com/denoland/std/blob/69858cfd7b917ac4cd67a9c0557a2c6d223e2d7f/.github/typos.toml#L14

kt3k commented 1 week ago

Ah, thanks for looking into it!