Skip to content

Commit d932fdc

Browse files
committed
Make sure some things get documented that were not properly marked.
1 parent c82c75c commit d932fdc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

source/mysql/impl/result.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ public:
370370
@property ulong rowCount() const pure nothrow { return _numRowsFetched; }
371371
}
372372

373-
/+
373+
/++
374374
A wrapper of a SafeResultRange which converts each row into an UnsafeRow.
375375
376376
Use the safe or unsafe UFCS methods to convert to and from these two types if

source/mysql/metadata.d

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,11 @@ private:
170170
}
171171

172172
public:
173+
/++
174+
Initialize a metadata struct with a connection.
175+
Params:
176+
con - The connection to use for fetching metadata
177+
+/
173178
this(Connection con)
174179
{
175180
_con = con;

0 commit comments

Comments
 (0)