Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
Wrap readme to 80 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Apr 11, 2024
1 parent 8f7b70b commit e6d982e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ impl YourEnum {
}
```

where `Repr` is an integer type of the right size as described in more
detail below.
where `Repr` is an integer type of the right size as described in more detail
below.

## Example

Expand Down Expand Up @@ -48,8 +48,8 @@ fn main() {
## Signature

The generated signature depends on whether the enum has a `#[repr(..)]`
attribute. If a `repr` is specified, the input to `n` will be required to be
of that type.
attribute. If a `repr` is specified, the input to `n` will be required to be of
that type.

```rust
#[derive(enumn::N)]
Expand Down Expand Up @@ -79,8 +79,8 @@ impl E {

## Discriminants

The conversion respects explicitly specified enum discriminants. Consider
this enum:
The conversion respects explicitly specified enum discriminants. Consider this
enum:

```rust
#[derive(enumn::N)]
Expand Down

0 comments on commit e6d982e

Please sign in to comment.