Skip to content

Commit cd6f59c

Browse files
committed
Update documentation for recent code changes.
1 parent 560c4a3 commit cd6f59c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/content/api/MySqlConnector/MySqlConnection/GetSchema.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ A DataTable containing schema information.
5151
Returns schema information for the data source of this [`MySqlConnection`](../../MySqlConnectionType/).
5252

5353
```csharp
54-
public override DataTable GetSchema(string collectionName, string[] restrictions)
54+
public override DataTable GetSchema(string collectionName, string[] restrictionValues)
5555
```
5656

5757
| parameter | description |
5858
| --- | --- |
5959
| collectionName | The name of the schema to return. |
60-
| restrictions | The restrictions to apply to the schema; this parameter is currently ignored. |
60+
| restrictionValues | The restrictions to apply to the schema; this parameter is currently ignored. |
6161

6262
## Return Value
6363

docs/content/api/MySqlConnector/MySqlConnection/GetSchemaAsync.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ The proposed ADO.NET API that this is based on is not finalized; this API may ch
6666
Asynchronously returns schema information for the data source of this [`MySqlConnection`](../../MySqlConnectionType/).
6767

6868
```csharp
69-
public Task<DataTable> GetSchemaAsync(string collectionName, string[] restrictions,
69+
public Task<DataTable> GetSchemaAsync(string collectionName, string[] restrictionValues,
7070
CancellationToken cancellationToken = default(CancellationToken))
7171
```
7272

7373
| parameter | description |
7474
| --- | --- |
7575
| collectionName | The name of the schema to return. |
76-
| restrictions | The restrictions to apply to the schema; this parameter is currently ignored. |
76+
| restrictionValues | The restrictions to apply to the schema; this parameter is currently ignored. |
7777
| cancellationToken | A token to cancel the asynchronous operation. |
7878

7979
## Return Value

docs/content/api/MySqlConnector/MySqlConnectionStringBuilder/ContainsKey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: MySqlConnectionStringBuilder.ContainsKey method
55
# MySqlConnectionStringBuilder.ContainsKey method
66

77
```csharp
8-
public override bool ContainsKey(string key)
8+
public override bool ContainsKey(string keyword)
99
```
1010

1111
## See Also

docs/content/api/MySqlConnector/MySqlConnectionStringBuilder/Remove.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: MySqlConnectionStringBuilder.Remove method
55
# MySqlConnectionStringBuilder.Remove method
66

77
```csharp
8-
public override bool Remove(string key)
8+
public override bool Remove(string keyword)
99
```
1010

1111
## See Also

0 commit comments

Comments
 (0)