Skip to content

Commit a04d953

Browse files
committed
shorten variable name
1 parent 7614eda commit a04d953

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rbx_binary/src/serializer/state.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ impl<'dom, 'db: 'dom, W: Write> SerializerState<'dom, 'db, W> {
729729
};
730730

731731
if let Some(property_migration) = prop_info.migration {
732-
let migrated_values_bind: Vec<_> = prop_info
732+
let migrated_values: Vec<_> = prop_info
733733
.values
734734
.iter()
735735
.map(|&value| {
@@ -745,7 +745,7 @@ impl<'dom, 'db: 'dom, W: Write> SerializerState<'dom, 'db, W> {
745745
id_to_referent,
746746
shared_string_ids,
747747
prop_info.prop_type,
748-
migrated_values_bind.iter().map(Cow::as_ref).enumerate(),
748+
migrated_values.iter().map(Cow::as_ref).enumerate(),
749749
type_mismatch,
750750
invalid_value,
751751
)?;

0 commit comments

Comments
 (0)