Skip to content

Commit

Permalink
typo in props types (#932)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcnuttandrew authored Aug 23, 2018
1 parent f8f4e52 commit 12b6b1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/plot/series/arc-series.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ ArcSeries.propTypes = {
}),
arcClassName: PropTypes.string,
padAngle: PropTypes.oneOfType([
PropTypes.function,
PropTypes.func,
PropTypes.number
])
};
Expand Down
2 changes: 1 addition & 1 deletion src/radial-chart/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ RadialChart.propTypes = {
getAngle: PropTypes.func,
getAngle0: PropTypes.func,
padAngle: PropTypes.oneOfType([
PropTypes.function,
PropTypes.func,
PropTypes.number
]),
getRadius: PropTypes.func,
Expand Down
2 changes: 1 addition & 1 deletion src/sunburst/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ Sunburst.propTypes = {
getSize: PropTypes.func,
width: PropTypes.number.isRequired,
padAngle: PropTypes.oneOfType([
PropTypes.function,
PropTypes.func,
PropTypes.number
])
};
Expand Down

0 comments on commit 12b6b1f

Please sign in to comment.