Skip to content

Commit

Permalink
Fixed micro symbol.
Browse files Browse the repository at this point in the history
  • Loading branch information
crazybob committed Nov 14, 2011
1 parent 0effaee commit a953e21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/src/main/java/com/squareup/luhnybin/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ public void run() {
for (long time : times) sum += time;

Arrays.sort(times);
System.out.printf("Mean time: %dµs%n", sum / times.length);
System.out.printf("Median time: %dµs%n", times[times.length / 2]);
System.out.printf("Fastest time: %dµs%n", times[0]);
System.out.printf("Mean time: %d\u00B5s%n", sum / times.length);
System.out.printf("Median time: %d\u00B5s%n", times[times.length / 2]);
System.out.printf("Fastest time: %d\u00B5s%n", times[0]);
}

System.out.println();
Expand Down
Binary file modified tests/target/luhnybin-1.0-SNAPSHOT.jar
Binary file not shown.

0 comments on commit a953e21

Please sign in to comment.