See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| var canvas = document.createElement("canvas") | |
| document.body.appendChild(canvas) | |
| var c = canvas.getContext("2d") | |
| c.beginPath() | |
| c.strokeStyle = 'darkred' | |
| c.arc(11,11,10,0.8*Math.PI,0.2*Math.PI,false) | |
| c.stroke() | |
| c.lineTo(11,34) | |
| c.stroke() |