Skip to content

Commit

Permalink
Update mdbook to version 0.4
Browse files Browse the repository at this point in the history
This is to avoid rust-lang/mdBook#1875

Also fix comment nit.
  • Loading branch information
raphlinus committed Oct 13, 2022
1 parent 1f7d6c4 commit 5eff209
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: install
args: --vers "^0.3" mdbook
args: --vers "^0.4" mdbook

- name: mdbook build
run: mdbook build
Expand Down
2 changes: 1 addition & 1 deletion druid-shell/src/backend/mac/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl Application {

// Clean up the delegate
let () = msg_send![self.ns_app, setDelegate: nil];
drop(Box::from_raw(state_ptr)); // Causes it to drop & dealloc automatically
drop(Box::from_raw(state_ptr));
}
}

Expand Down

0 comments on commit 5eff209

Please sign in to comment.