Skip to content

Commit e0d0df3

Browse files
committed
chore: Reformat code from core/src/avm2
Reformat code that is skipped dfrom formatting with rustfmt::skip.
1 parent 1066031 commit e0d0df3

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

core/src/avm2/globals/vector_double.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub use crate::avm2::globals::vector::{
77
set_fixed,
88
get_length,
99
set_length,
10-
10+
1111
concat,
1212
every,
1313
filter,

core/src/avm2/globals/vector_int.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub use crate::avm2::globals::vector::{
77
set_fixed,
88
get_length,
99
set_length,
10-
10+
1111
concat,
1212
every,
1313
filter,

core/src/avm2/globals/vector_object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub use crate::avm2::globals::vector::{
77
set_fixed,
88
get_length,
99
set_length,
10-
10+
1111
concat,
1212
every,
1313
filter,

core/src/avm2/globals/vector_uint.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub use crate::avm2::globals::vector::{
77
set_fixed,
88
get_length,
99
set_length,
10-
10+
1111
concat,
1212
every,
1313
filter,

core/src/avm2/parameters.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::string::AvmString;
66
/// Extensions over parameters that are passed into AS-defined, Rust-implemented methods.
77
///
88
/// It is expected that the AS signature is correct and you only operate on values defined from it.
9-
/// These values will be `expect()`ed to exist, and any method here will panic if they're missing.
9+
/// These values will be `expect()`ed to exist, and any method here will panic if they're missing.
1010
pub trait ParametersExt<'gc> {
1111
/// Gets the value at the given index.
1212
fn get_value(&self, index: usize) -> Value<'gc>;

0 commit comments

Comments
 (0)