Skip to content

Commit

Permalink
publicify some ParsingLeftOvers stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
MahdiBM committed Nov 16, 2023
1 parent 33b2614 commit 8ac3c77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Sources/TwitchIRC/IncomingMessage/ParsingLeftOvers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ public struct ParsingLeftOvers {

/// A pair of key-value that was not used during parsing.
public struct UnusedPair {
let key: String
let value: String
public let key: String
public let value: String
}

/// An unsuccessful parsing attempt for a key
public struct UnparsedKey {
let key: String
let value: String
let type: String
public let key: String
public let value: String
public let type: String
}

/// Key-Value pairs that were unused.
Expand Down

0 comments on commit 8ac3c77

Please sign in to comment.