Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
Co-authored-by: Juuz <[email protected]>
  • Loading branch information
NebelNidas and Juuxel authored Nov 19, 2023
1 parent 74763eb commit fa5be44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/fabricmc/mappingio/MappingReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static MappingFormat detectFormat(Reader reader) throws IOException {
int pos = 0;
int len;

// Be careful not to close the reader, thats up to the caller.
// Be careful not to close the reader, that's up to the caller.
BufferedReader br = reader instanceof BufferedReader ? (BufferedReader) reader : new BufferedReader(reader);

br.mark(DETECT_HEADER_LEN);
Expand Down

0 comments on commit fa5be44

Please sign in to comment.