From aea321e9f03719b9585eceed5d2224f233dd277e Mon Sep 17 00:00:00 2001 From: terminalforlife Date: Tue, 17 Nov 2020 15:42:28 +0000 Subject: [PATCH] Fix line length of types (tidied up table) --- sheets/_swift/types | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/sheets/_swift/types b/sheets/_swift/types index 2d6557b..a8e9a89 100644 --- a/sheets/_swift/types +++ b/sheets/_swift/types @@ -9,18 +9,18 @@ // * Optional − a variable that can hold either a value or no value. // * Tuples // -// | -------|-------------------|-----------------------------------------------| -// | Type | Typical Bit Width| Typical Range | -// | -------|-------------------|-----------------------------------------------| -// | Int8 | 1byte | -127 to 127 | -// | UInt8 | 1byte | 0 to 255 | -// | Int32 | 4bytes | -2147483648 to 2147483647 | -// | UInt32 | 4bytes | 0 to 4294967295 | -// | Int64 | 8bytes | -9223372036854775808 to 9223372036854775807 | -// | UInt64 | 8bytes | 0 to 18446744073709551615 | -// | Float | 4bytes | 1.2E-38 to 3.4E+38 (~6 digits) | -// | Double | 8bytes | 2.3E-308 to 1.7E+308 (~15 digits) | -// | -------|-------------------|-----------------------------------------------| +// +--------+-------------------+--------------------------------------------+ +// | Type | Typical Bit Width | Typical Range | +// | -------|-------------------|--------------------------------------------+ +// | Int8 | 1byte | -127 to 127 | +// | UInt8 | 1byte | 0 to 255 | +// | Int32 | 4bytes | -2147483648 to 2147483647 | +// | UInt32 | 4bytes | 0 to 4294967295 | +// | Int64 | 8bytes | -9223372036854775808 to 9223372036854775807| +// | UInt64 | 8bytes | 0 to 18446744073709551615 | +// | Float | 4bytes | 1.2E-38 to 3.4E+38 (~6 digits) | +// | Double | 8bytes | 2.3E-308 to 1.7E+308 (~15 digits) | +// +--------+-------------------+--------------------------------------------+ // Type Aliases: //