Skip to content

Commit

Permalink
Run cargo fmt --all.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Oct 19, 2024
1 parent f9d48e8 commit 3a5fab1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 26 deletions.
28 changes: 4 additions & 24 deletions crate/rt_model/src/flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,7 @@ impl<E> Flow<E> {
.iter()
.last()
.into_iter()
.chain(
item_interaction_push
.location_to()
.iter()
.last(),
)
.chain(item_interaction_push.location_to().iter().last())
.for_each(|item_location| {
item_location_to_item_id_sets_insert(
&mut item_location_to_item_id_sets,
Expand All @@ -186,12 +181,7 @@ impl<E> Flow<E> {
.iter()
.last()
.into_iter()
.chain(
item_interaction_pull
.location_server()
.iter()
.last(),
)
.chain(item_interaction_pull.location_server().iter().last())
.for_each(|item_location| {
item_location_to_item_id_sets_insert(
&mut item_location_to_item_id_sets,
Expand Down Expand Up @@ -362,12 +352,7 @@ impl<E> Flow<E> {
.iter()
.last()
.into_iter()
.chain(
item_interaction_push
.location_to()
.iter()
.last(),
)
.chain(item_interaction_push.location_to().iter().last())
.for_each(|item_location| {
item_location_to_item_id_sets_insert(
&mut item_location_to_item_id_sets,
Expand All @@ -380,12 +365,7 @@ impl<E> Flow<E> {
.iter()
.last()
.into_iter()
.chain(
item_interaction_pull
.location_server()
.iter()
.last(),
)
.chain(item_interaction_pull.location_server().iter().last())
.for_each(|item_location| {
item_location_to_item_id_sets_insert(
&mut item_location_to_item_id_sets,
Expand Down
4 changes: 2 additions & 2 deletions crate/webi_output/src/outcome_info_graph_calculator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ fn theme_styles_augment(
// state to hide the node. e.g. a file download before
// uploading it somewhere else.
//
// * For clean, the successor's destination would be removed, but
// not its source. e.g. the upload would remove the
// * For clean, the successor's destination would be removed,
// but not its source. e.g. the upload would remove the
// destination file, and not the source, which would later be
// removed by the predecessor.
//
Expand Down

0 comments on commit 3a5fab1

Please sign in to comment.