Skip to content

Commit

Permalink
Fix typo in System.out message
Browse files Browse the repository at this point in the history
  • Loading branch information
ulyssesrex committed Sep 23, 2016
1 parent 1033a38 commit fa6e817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JavaSrc/hdf5_getters.java
Expand Up @@ -573,7 +573,7 @@ public static void main(String[] args)
System.out.println("file: " + filename);
H5File h5 = hdf5_open_readonly(filename);
int nSongs = get_num_songs(h5);
System.out.println("numberof songs: " + nSongs);
System.out.println("number of songs: " + nSongs);
if (nSongs > 1) System.out.println("we'll display info for song 0");
try {
double[] res;
Expand Down

0 comments on commit fa6e817

Please sign in to comment.