From 5e9aeb916d1706d81b90948913050f6589726c87 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Thu, 14 Sep 2023 10:22:13 +0100 Subject: [PATCH] Apply rustfmt to README example (#676) Since as-is, pasting it into an IDE with format on save enabled cause the wrapping to change on first save. --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 431cdfb2..ab5e3f5f 100644 --- a/README.md +++ b/README.md @@ -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() }