Skip to content

Commit

Permalink
fix: docs import comment
Browse files Browse the repository at this point in the history
  • Loading branch information
cs50victor committed Feb 16, 2024
1 parent f079f74 commit d0aee85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: cargo build --release --features docker

- name: Test
run: cargo test --release
run: cargo test --release --features docker

- name: Lint
run: cargo fmt --all -- --check
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_remote_asset/src/web_asset_plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ use bevy::prelude::*;
use crate::web_asset_source::*;
use bevy::asset::io::AssetSource;

/// Add this plugin to bevy to support loading http and https urls.
/// Add this plugin to bevy to support loading https urls.
///
/// Needs to be added before Bevy's `DefaultPlugins`.
///
/// # Example
///
/// ```no_run
/// # use bevy::prelude::*;
/// # use bevy_web_asset::WebAssetPlugin;
/// # use bevy_remote_asset::WebAssetPlugin;
///
/// let mut app = App::new();
///
Expand Down
2 changes: 1 addition & 1 deletion new_media/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "new_media"
version = "0.0.1"
edition = "2021"
rust.workspace = true

default-run = "new_media"

[dependencies]
Expand Down

0 comments on commit d0aee85

Please sign in to comment.