Skip to content

Commit

Permalink
fix(docs): correct plugin api typo (swagger-api#4138)
Browse files Browse the repository at this point in the history
  • Loading branch information
cantsdmr authored and shockey committed Jan 19, 2018
1 parent 286c0e0 commit c28213d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/customization/plugin-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ const MyWrapComponentPlugin = function(system) {
if(props.number > 10) {
return <div>
<h3>Warning! Big number ahead.</h3>
<OriginalComponent {...props} />
<Original {...props} />
</div>
} else {
return <Original {...props} />
Expand All @@ -353,7 +353,7 @@ const MyWrapComponentPlugin = function(system) {
if(props.number > 10) {
return <div>
<h3>Warning! Big number ahead.</h3>
<OriginalComponent {...props} />
<Original {...props} />
</div>
} else {
return <Original {...props} />
Expand Down

0 comments on commit c28213d

Please sign in to comment.