Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fxgl-io/src/main/kotlin/com/almasb/fxgl/net/Readers.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface TCPMessageReader<T> {
fun read(): T
}

// we need a factory for tcp message readers since each inpu stream is valid for a single connection
// we need a factory for tcp message readers since each input stream is valid for a single connection
// therefore we cannot reuse the same message reader for each connection
interface TCPReaderFactory<T> {
fun create(input: InputStream): TCPMessageReader<T>
Expand Down
Loading