Skip to content

Commit 1dfe12e

Browse files
authored
fix: bug when compiling without teal feature (#148)
fix failing doctest logic
1 parent 553f02e commit 1dfe12e

File tree

1 file changed

+1
-1
lines changed
  • crates/languages/bevy_mod_scripting_lua/src

1 file changed

+1
-1
lines changed

crates/languages/bevy_mod_scripting_lua/src/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ macro_rules! lua_path {
3636
/// Current configuration will provide "/scripts/*.lua" paths
3737
/// ```rust
3838
/// use bevy_mod_scripting_lua::lua_path;
39-
/// assert_eq!("scripts/build/my_script.lua",lua_path!("my_script"))
39+
/// assert_eq!("scripts/my_script.lua",lua_path!("my_script"))
4040
/// ```
4141
#[cfg(not(feature = "teal"))]
4242
#[macro_export]

0 commit comments

Comments
 (0)