-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Fix typo in mysql doc (#3351)
Fix typo in mysql doc
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,12 +28,12 @@ This service can be used to: | |
|
||
```rust | ||
use anyhow::Result; | ||
use opendal::services::MySql; | ||
use opendal::services::Mysql; | ||
use opendal::Operator; | ||
|
||
#[tokio::main] | ||
async fn main() -> Result<()> { | ||
let mut builder = MySql::default(); | ||
let mut builder = Mysql::default(); | ||
builder.root("/"); | ||
builder.connection_string("mysql://you_username:[email protected]:5432/your_database"); | ||
builder.table("your_table"); | ||
|