Skip to content

Commit

Permalink
fix typo printing KNN index disk usage
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemccand committed Sep 29, 2024
1 parent fa2bdbe commit 56db6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/knn/KnnGraphTester.java
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ private void run(String... args) throws Exception {
indexSizeOnDiskBytes += dir.fileLength(fileName);
}
indexSizeOnDiskMB = indexSizeOnDiskBytes / 1024. / 1024.;
System.out.println(String.format(Locale.ROOT, "index disk uage is %.2f MB", indexSizeOnDiskMB));
System.out.println(String.format(Locale.ROOT, "index disk usage is %.2f MB", indexSizeOnDiskMB));
}
if (operation != null) {
switch (operation) {
Expand Down

0 comments on commit 56db6fb

Please sign in to comment.