Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ ReactDOM.render(<div>
<td>strokeLinecap</td>
<td>String</td>
<td>'round'</td>
<td>The shape to be used at the end of the progress bar, can be `square` or `round`.</td>
<td>The shape to be used at the end of the progress bar, can be `butt`, `square` or `round`.</td>
</tr>
<tr>
<td>prefixCls</td>
Expand Down
2 changes: 1 addition & 1 deletion src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const propTypes = {
percent: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
prefixCls: PropTypes.string,
strokeColor: PropTypes.string,
strokeLinecap: PropTypes.oneOf(['round', 'square']),
strokeLinecap: PropTypes.oneOf(['butt', 'round', 'square']),
strokeWidth: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
style: PropTypes.object,
trailColor: PropTypes.string,
Expand Down