Merge branch 'main' into feature/process-stdin

This commit is contained in:
Erica Marigold 2023-09-19 11:24:09 +05:30 committed by GitHub
commit 6f9a9efa21
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -61,6 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed missing trailing newline when using the `warn` global
- Fixed constructor for `CFrame` in the `roblox` built-in library not parsing the 12-arg overload correctly. ([#102])
- Fixed various functions for `CFrame` in the `roblox` built-in library being incorrect, specifically row-column ordering and some flipped signs. ([#103])

View file

@ -9,7 +9,7 @@ use crate::lune::{
pub fn create(lua: &'static Lua) -> LuaResult<impl IntoLua<'_>> {
lua.create_async_function(|_, args: LuaMultiValue| async move {
let formatted = format!(
"{}\n{}",
"{}\n{}\n",
format_label("warn"),
pretty_format_multi_value(&args)?
);