Revision 4d26be084722d5638e4aafd126acf4aa370cacaf authored by Christian Guinard on 22 January 2024, 21:30:30 UTC, committed by GitHub on 22 January 2024, 21:30:30 UTC
Introduced in [50572](https://github.com/JuliaLang/julia/pull/50572)

Before:
```
julia> Base.format_bytes(1, binary=false)
"1 "

julia> Base.format_bytes(11, binary=false)
"11 s"
```

This PR:
```
julia> Base.format_bytes(1, binary=false)
"1 byte"

julia> Base.format_bytes(11, binary=false)
"11 bytes"
```
Also add tests.
1 parent 081f045
History
File Mode Size
Dockerfile -rw-r--r-- 140 bytes
devcontainer.json -rw-r--r-- 134 bytes

back to top