Skip to content

Commit 2f38cde

Browse files
committed
Fixed a typo ("Commet" => "Comment")
1 parent 9be7d2e commit 2f38cde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/uiwidgets/ScriptsPane.as

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,11 +432,11 @@ return true; // xxx disable this check for now; it was causing confusion at Scra
432432
g.lineStyle(2, commentLineColor);
433433
for (var i:int = 0; i < numChildren; i++) {
434434
var c:ScratchComment = getChildAt(i) as ScratchComment;
435-
if (c && c.blockRef) updateCommetConnection(c, g);
435+
if (c && c.blockRef) updateCommentConnection(c, g);
436436
}
437437
}
438438

439-
private function updateCommetConnection(c:ScratchComment, g:Graphics):void {
439+
private function updateCommentConnection(c:ScratchComment, g:Graphics):void {
440440
// Update the position of the given comment based on the position of the
441441
// block it references and update the line connecting it to that block.
442442
if (!c.blockRef) return;

0 commit comments

Comments
 (0)