File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
website/src/reference/builder/top-level Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ assert_eq!(
4343
4444let 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
7777let 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
122122let 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
You can’t perform that action at this time.
0 commit comments