@@ -26,28 +26,28 @@ public struct ColumnMetadata {
2626 /// If the column can be identified as a column of a specific table, the object ID of that
2727 /// table; otherwise zero.
2828 ///
29- /// -SeeAlso: [pg_attribute.attrelid](https://www.postgresql.org/docs/12/catalog-pg-attribute.html)
29+ /// - SeeAlso: [pg_attribute.attrelid](https://www.postgresql.org/docs/12/catalog-pg-attribute.html)
3030 public let tableOID : UInt32
3131
3232 /// If the column can be identified as a column of a specific table, the attribute number of
3333 /// the column in that table; otherwise zero.
3434 ///
35- /// -SeeAlso: [pg_attribute.attnum](https://www.postgresql.org/docs/12/catalog-pg-attribute.html)
35+ /// - SeeAlso: [pg_attribute.attnum](https://www.postgresql.org/docs/12/catalog-pg-attribute.html)
3636 public let columnAttributeNumber : Int
3737
3838 /// The object ID of the column's data type.
3939 ///
40- /// -SeeAlso: [pg_type.oid](https://www.postgresql.org/docs/12/catalog-pg-type.html)
40+ /// - SeeAlso: [pg_type.oid](https://www.postgresql.org/docs/12/catalog-pg-type.html)
4141 public let dataTypeOID : UInt32
4242
4343 /// The data type size.
4444 ///
45- /// -SeeAlso: [pg_type.typlen](https://www.postgresql.org/docs/12/catalog-pg-type.html)
45+ /// - SeeAlso: [pg_type.typlen](https://www.postgresql.org/docs/12/catalog-pg-type.html)
4646 public let dataTypeSize : Int
4747
4848 /// The data type modifier.
4949 ///
50- /// -SeeAlso: [pg_attribute.atttypmod](https://www.postgresql.org/docs/12/catalog-pg-attribute.html)
50+ /// - SeeAlso: [pg_attribute.atttypmod](https://www.postgresql.org/docs/12/catalog-pg-attribute.html)
5151 public let dataTypeModifier : UInt32
5252}
5353
0 commit comments