Skip to content

Commit 589c18f

Browse files
docs(api): fix Mixin example to use correct factory functions (#1581)
1 parent 538bea1 commit 589c18f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/components/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ Compose multiple classes into a single constructor using factory functions.
292292
@Component({
293293
tag: 'its-mixing-time',
294294
})
295-
export class X extends Mixin(aFactory, aFactory, cFactory) {
295+
export class X extends Mixin(aFactory, bFactory, cFactory) {
296296
render() {
297297
return <div>{this.propA} {this.propB} {this.propC}</div>
298298
}

0 commit comments

Comments
 (0)