Skip to content

Commit

Permalink
Apply rustfmt to README example (#676)
Browse files Browse the repository at this point in the history
Since as-is, pasting it into an IDE with format on save enabled
cause the wrapping to change on first save.
  • Loading branch information
edmorley authored Sep 14, 2023
1 parent 4ea9d52 commit 5e9aeb9
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,14 @@ impl Buildpack for HelloWorldBuildpack {
BuildResultBuilder::new()
.launch(
LaunchBuilder::new().process(
ProcessBuilder::new(process_type!("web"), ["echo"])
.arg("Hello World!")
.default(true)
.build(),
)
.build(),
LaunchBuilder::new()
.process(
ProcessBuilder::new(process_type!("web"), ["echo"])
.arg("Hello World!")
.default(true)
.build(),
)
.build(),
)
.build()
}
Expand Down

0 comments on commit 5e9aeb9

Please sign in to comment.