Skip to content

Commit

Permalink
docs: Fix typos
Browse files Browse the repository at this point in the history
Fixed square brackets typos in `README.md`.
  • Loading branch information
marcoradocchia committed Nov 29, 2023
1 parent bfa6e66 commit 7bc03d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ _parsing_ the buffered data.

## Examples

The following example shows the most basic usage of the [`MemInfo`] API. First
The following example shows the most basic usage of the `MemInfo` API. First
we construct a new instance, which translates to `/proc/meminfo` being opened
and read into the internal buffer; then we call the [`MemInfo::parse`], which
and read into the internal buffer; then we call the `MemInfo::parse`, which
returns a **lazy** iterator over parsed entries, in this case represented by
the [`MemInfoEntry`] type. The iterator being lazy meaning it parses a new
the `MemInfoEntry` type. The iterator being lazy meaning it parses a new
entry on each call to the `next` method. In other words: you pay only for the
entries you parse.

Expand Down

0 comments on commit 7bc03d0

Please sign in to comment.