Changed visibility from package to interal

This commit is contained in:
cdricms
2024-06-26 22:46:58 +02:00
parent 78a4737015
commit bc145da022
12 changed files with 208 additions and 110 deletions

View File

@@ -64,10 +64,10 @@ public struct Fen: CustomStringConvertible {
}
public enum FenError: Error {
case InvalidCharacter(c: String, column: UInt8)
case NumberTooBig(n: UInt8, column: UInt8)
case NumberTooSmall(n: UInt8, column: UInt8)
case NotAppropriateLength(n: UInt8, column: UInt8)
case InvalidCharacter(c: String, column: Int8)
case NumberTooBig(n: Int8, column: Int8)
case NumberTooSmall(n: Int8, column: Int8)
case NotAppropriateLength(n: Int8, column: Int8)
}
public var description: String {