Skip to content

Commit a0045de

Browse files
authored
Merge pull request #855 from yyjdelete/master
Fix some broken links in docs.
2 parents 7e016b5 + d3e61c0 commit a0045de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/content/overview/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To connect to a database on `localhost` port `3306` with a user `mysqltest`, pas
1717

1818
`host=127.0.0.1;port=3306;user id=mysqltest;password=Password123;database=mysqldb;`
1919

20-
For all connection string options, view the [Connection Options Reference](connection-options/)
20+
For all connection string options, view the [Connection Options Reference](/connection-options/)
2121

2222
### Application Database Object Example
2323

docs/content/tutorials/best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ uses cached `Task<bool>` objects for its `true` and `false` return values.)
133133
In order to get the full benefit of asynchronous operation, every method in the call stack that eventually calls
134134
MySqlConnector should be implemented as an async method.
135135

136-
Example assumes a [configured AppDb](overview/configuration) object in the `MySqlConnector.Examples` namespace.
136+
Example assumes a [configured AppDb](/overview/configuration) object in the `MySqlConnector.Examples` namespace.
137137

138138
```csharp
139139
using System.Threading.Tasks;

docs/content/tutorials/migrating-from-connector-net.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ it is used to specify the server’s CA certificate file; `SslCa` is just an ali
8989
for the client’s private key (in PFX format); `SslCa` (aka `CACertificateFile`) is a separate option to specify the server’s CA certificate.
9090

9191
Some connection string options that are supported in Connector/NET are not supported in MySqlConnector. For a full list of options that are
92-
supported in MySqlConnector, see the [Connection Options](connection-options).
92+
supported in MySqlConnector, see the [Connection Options](/connection-options).
9393

9494
### Async
9595

@@ -140,7 +140,7 @@ Connector/NET allows a command to be executed even when `MySqlCommand.Transactio
140140
disposed `MySqlTransaction`. MySqlConnector will throw an `InvalidOperationException` if the `MySqlCommand.Transaction`
141141
property doesn’t reference the active transaction. This fixes <a href="https://bugs.mysql.com/bug.php?id=88611">MySQL Bug 88611</a>.
142142
To disable this strict validation, set <code>IgnoreCommandTransaction=true</code>
143-
in the connection string. See [Transaction Usage](troubleshooting/transaction-usage/) for more details.
143+
in the connection string. See [Transaction Usage](/troubleshooting/transaction-usage/) for more details.
144144

145145
### MySqlDataAdapter
146146

docs/content/tutorials/net-core-mvc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ to verify the project builds and runs successfully.
5454
}
5555
```
5656

57-
`AppDb.cs` is a disposable [Application Database Object](overview/configuration/), adapted to read the ConnectionString
57+
`AppDb.cs` is a disposable [Application Database Object](/overview/configuration/), adapted to read the ConnectionString
5858
from the Configuration Object:
5959

6060
```csharp

0 commit comments

Comments
 (0)