Skip to content

Commit

Permalink
chore: Fix typo in mysql doc (#3351)
Browse files Browse the repository at this point in the history
Fix typo in mysql doc
  • Loading branch information
lewiszlw authored Oct 21, 2023
1 parent 1ade687 commit 412cf97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/services/mysql/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 412cf97

Please sign in to comment.