Skip to content

Commit 154fff3

Browse files
committed
Small wording improvement
1 parent ff402e3 commit 154fff3

File tree

1 file changed

+3
-3
lines changed
  • website/src/reference/builder/top-level

1 file changed

+3
-3
lines changed

website/src/reference/builder/top-level/derive.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ assert_eq!(
4343

4444
let example: Example = builder
4545
.is_admin(true)
46-
// We can use `From<ExampleBuilder>` to `Example` instead of
46+
// We can use `From<ExampleBuilder> for Example` instead of
4747
// calling .build()
4848
.into();
4949
```
@@ -76,7 +76,7 @@ assert_eq!(
7676

7777
let example: u32 = builder
7878
.is_admin(true)
79-
// We can use `From<ExampleBuilder>` to `Example` instead of
79+
// We can use `From<ExampleBuilder> for Example` instead of
8080
// calling .build()
8181
.into();
8282

@@ -121,7 +121,7 @@ assert_eq!(
121121

122122
let example: u32 = builder
123123
.is_admin(true)
124-
// We can use `From<ExampleBuilder>` to `Example` instead of
124+
// We can use `From<ExampleBuilder> for Example` instead of
125125
// calling .build()
126126
.into();
127127

0 commit comments

Comments
 (0)