Skip to content

Commit

Permalink
doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Feb 1, 2024
1 parent 2383c14 commit 143eb10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/tauri/src/window/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ async fn create_window(app: tauri::AppHandle) {
```
#[tauri::command]
async fn reopen_window(app: tauri::AppHandle) {
let window = tauri::window::WindowBuilder::from_config(&app, &app.config().ap.windows.get(0).unwrap().clone())
let window = tauri::window::WindowBuilder::from_config(&app, &app.config().app.windows.get(0).unwrap().clone())
.unwrap()
.build()
.unwrap();
Expand Down

0 comments on commit 143eb10

Please sign in to comment.