We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 699ce46 commit bc4b8b3Copy full SHA for bc4b8b3
src/ast/helpers/stmt_data_loading.rs
@@ -104,10 +104,10 @@ impl fmt::Display for StageLoadSelectItem {
104
}
105
write!(f, "${}", self.file_col_num)?;
106
if let Some(element) = &self.element {
107
- write!(f, ":{}", element)?;
+ write!(f, ":{element}")?;
108
109
if let Some(item_as) = &self.item_as {
110
- write!(f, " AS {}", item_as)?;
+ write!(f, " AS {item_as}")?;
111
112
Ok(())
113
0 commit comments