See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| /** | |
| * This is a very simple example of an ember component to integrate | |
| * nnick/chart.js in an ember.js application. Basically, it is simply | |
| * using the components hook to create a ChartJS canvas element. | |
| * Additionally, it supports an update property that allows you to | |
| * let the chart re-rendet if your data or options change. Chart.js | |
| * doesn't support updating its data so this will just create a new | |
| * chart on the given canvas. | |
| * | |
| * Example usage in a handlebars template: |