Skip to content

Commit

Permalink
Publish v0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
matthunz committed Dec 16, 2023
1 parent 8b82492 commit 3d7c28f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "viewbuilder"
version = "0.9.3"
version = "0.9.4"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Cross-platform UI framework"
Expand Down
2 changes: 1 addition & 1 deletion src/event_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub(crate) enum EventLoopTarget<T: 'static> {
/// Application event loop.
/// ```no_run
/// use concoct::{Context, Object};
/// use viewbuilder::{event_loop::Event, EventLoop, Window};
/// use viewbuilder::{event_loop::Event, EventLoop};
///
/// struct App;
///
Expand Down
2 changes: 1 addition & 1 deletion src/window/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ enum WindowState {
///
/// let event_loop = EventLoop::<()>::create();
///
/// let window = Window::create;
/// let window = Window::create();
/// Window::insert(&mut window.cx(), &event_loop);
///
/// let app = App.start();
Expand Down

0 comments on commit 3d7c28f

Please sign in to comment.