Skip to content

Commit e688a0f

Browse files
DeveloperMindset123ethe
authored andcommitted
doc:removed previous comments
I removed the comments I had included for explanation for the changes made in , to ensure that comes from rather than , this corresponds to the PR review follow-up.
1 parent 5f1dbac commit e688a0f

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

guide/src/start.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ After defining your schema, you can create a `DB` instance using a customized `D
6060

6161
```rust
6262
use std::fs;
63-
// TODO : delete if approved
64-
// use fusio::path::Path;
6563
use tonbo::Path;
6664
use tonbo::{executor::tokio::TokioExecutor, DbOption, DB};
6765

@@ -71,9 +69,6 @@ async fn main() {
7169
fs::create_dir_all("./db_path/users").unwrap();
7270

7371
let options = DbOption::new(
74-
75-
// TODO : delete comment if needed
76-
// NOTE : if you use fusio::path::Path, cargo will throw an error since it was expecting Tonbo::Path.
7772
Path::from_filesystem_path("./db_path/users").unwrap(),
7873
&UserSchema,
7974
);

0 commit comments

Comments
 (0)