Add missing colon.

This commit is contained in:
Jürg Lehni 2011-12-19 13:16:06 +01:00
parent 4514c63ed4
commit 83df011e1d

View file

@ -96,7 +96,7 @@ Path.inject({ statics: new function() {
Rectangle: function(rect) { Rectangle: function(rect) {
rect = Rectangle.read(arguments); rect = Rectangle.read(arguments);
var left = rect.x, var left = rect.x,
top = rect.y top = rect.y,
right = left + rect.width, right = left + rect.width,
bottom = top + rect.height, bottom = top + rect.height,
path = new Path(); path = new Path();