Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Willis-Ford committed Sep 6, 2017
1 parent 1487f79 commit 49f7b06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/PenSkin.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ class PenSkin extends Skin {
const r = Math.round(color4f[0] * 255);
const g = Math.round(color4f[1] * 255);
const b = Math.round(color4f[2] * 255);
const a = color4f[3]; // Alpha is 0 to 1 (not 0 to 255 like r,g,b)
const a = color4f[3]; // Alpha is 0 to 1 (not 0 to 255 like r,g,b)

context.strokeStyle = `rgba(${r},${g},${b},${a})`;
context.lineCap = 'round';
Expand Down
2 changes: 1 addition & 1 deletion src/RenderConstants.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
* @enum {string}
*/
Events: {
/**
/**
* NativeSizeChanged event
*
* @event RenderWebGL#event:NativeSizeChanged
Expand Down

0 comments on commit 49f7b06

Please sign in to comment.