Skip to content

Commit

Permalink
remove as_slice
Browse files Browse the repository at this point in the history
  • Loading branch information
robtfm committed Sep 5, 2023
1 parent b8dbd66 commit 3e3c9f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_render/src/render_resource/bind_group_entries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use super::{Sampler, TextureView};
/// &BindGroupEntries::with_indexes((
/// (2, &my_sampler),
/// (3, my_uniform),
/// )).as_slice(),
/// )),
/// );
/// ```
///
Expand Down Expand Up @@ -45,7 +45,7 @@ use super::{Sampler, TextureView};
/// &BindGroupEntries::sequential((
/// &my_sampler,
/// my_uniform,
/// )).as_slice(),
/// )),
/// );
/// ```
///
Expand Down

0 comments on commit 3e3c9f6

Please sign in to comment.