Skip to content

Commit

Permalink
Cleanup documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
campeis committed Dec 2, 2023
1 parent 8587073 commit a448273
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,6 @@ fn main() {
}
```

### Basic usage
```rust
use type_safe_builder_macro::Builder;

#[derive(Builder)]
struct Struct {
field: String,
}

fn main() {
let build = StructBuilder::builder()
.field("value".into())
.build();
}
```

### Default fields
```rust
use type_safe_builder_macro::Builder;
Expand Down

0 comments on commit a448273

Please sign in to comment.