Skip to content

Commit

Permalink
Fixed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
OliviaYtterbrink committed Jan 16, 2018
1 parent d9fabeb commit ca8f632
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ private char direction( int start, int end )
switch ( end )
{
case 1:
return 'F'; // move up 000->001
return 'F'; // move forward 000->001
case 2:
return 'U'; // move right 000->010
return 'U'; // move up 000->010
case 4:
return 'R'; // move right 000->100
case -4:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ abstract static class CurveRule
assert npointValues.length == length();
}

int length()
final int length()
{
return (int) Math.pow( 2, dimension );
}
Expand Down

0 comments on commit ca8f632

Please sign in to comment.