Skip to content

Commit ae8c6b9

Browse files
committed
Fix documentation formatting.
1 parent 12f9832 commit ae8c6b9

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

docs/content/api/MySqlConnector/MySqlBulkCopy/RowsCopied.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@ title: MySqlBulkCopy.RowsCopied property
44

55
# MySqlBulkCopy.RowsCopied property
66

7-
Returns the number of rows that were copied (after
8-
9-
```csharp
10-
WriteToServer(Async)
11-
```
12-
13-
finishes).
7+
Returns the number of rows that were copied (after `WriteToServer(Async)` finishes).
148

159
```csharp
1610
public int RowsCopied { get; }

docs/content/api/MySqlConnector/MySqlBulkCopyType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public sealed class MySqlBulkCopy
3737
| [ColumnMappings](../MySqlBulkCopy/ColumnMappings/) { get; } | A collection of [`MySqlBulkCopyColumnMapping`](../MySqlBulkCopyColumnMappingType/) objects. If the columns being copied from the data source line up one-to-one with the columns in the destination table then populating this collection is unnecessary. Otherwise, this should be filled with a collection of [`MySqlBulkCopyColumnMapping`](../MySqlBulkCopyColumnMappingType/) objects specifying how source columns are to be mapped onto destination columns. If one column mapping is specified, then all must be specified. |
3838
| [DestinationTableName](../MySqlBulkCopy/DestinationTableName/) { getset; } | The name of the table to insert rows into. |
3939
| [NotifyAfter](../MySqlBulkCopy/NotifyAfter/) { getset; } | If non-zero, this specifies the number of rows to be processed before generating a notification event. |
40-
| [RowsCopied](../MySqlBulkCopy/RowsCopied/) { get; } | Returns the number of rows that were copied (after |
40+
| [RowsCopied](../MySqlBulkCopy/RowsCopied/) { get; } | Returns the number of rows that were copied (after `WriteToServer(Async)` finishes). |
4141
| event [MySqlRowsCopied](../MySqlBulkCopy/MySqlRowsCopied/) | This event is raised every time that the number of rows specified by the [`NotifyAfter`](../MySqlBulkCopy/NotifyAfter/) property have been processed. |
4242
| [WriteToServer](../MySqlBulkCopy/WriteToServer/)(…) | Copies all rows in the supplied DataTable to the destination table specified by the [`DestinationTableName`](../MySqlBulkCopy/DestinationTableName/) property of the [`MySqlBulkCopy`](../MySqlBulkCopyType/) object. (3 methods) |
4343
| [WriteToServerAsync](../MySqlBulkCopy/WriteToServerAsync/)(…) | Asynchronously copies all rows in the supplied DataTable to the destination table specified by the [`DestinationTableName`](../MySqlBulkCopy/DestinationTableName/) property of the [`MySqlBulkCopy`](../MySqlBulkCopyType/) object. (3 methods) |

src/MySqlConnector/MySqlBulkCopy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public MySqlBulkCopy(MySqlConnection connection, MySqlTransaction? transaction =
8989
public List<MySqlBulkCopyColumnMapping> ColumnMappings { get; }
9090

9191
/// <summary>
92-
/// Returns the number of rows that were copied (after <code>WriteToServer(Async)</code> finishes).
92+
/// Returns the number of rows that were copied (after <c>WriteToServer(Async)</c> finishes).
9393
/// </summary>
9494
public int RowsCopied { get; private set; }
9595

0 commit comments

Comments
 (0)