Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ new TimeOnly(14, 30).ToClockNotation() => "duas e meia"

// Round to nearest 5 minutes
new TimeOnly(15, 7).ToClockNotation(ClockNotationRounding.NearestFiveMinutes)
=> "five past three"
=> "five past three."

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

```


Expand Down Expand Up @@ -743,7 +743,7 @@ Humanizer includes a port of the brilliant [ByteSize](https://github.com/omar/By
Quite a few changes and additions are made on `ByteSize` to make the interaction with `ByteSize` easier and more consistent with the Humanizer API.
Here are a few examples of how you can convert from numbers to byte sizes and between size magnitudes:

```c#
```csharp

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

var fileSize = (10).Kilobytes();

fileSize.Bits => 81920
Expand Down