Skip to content

Commit

Permalink
Fix multiline example in CreateYamlFile
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Dec 4, 2024
1 parent cd4a37f commit f9d71bc
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ public class CreateYamlFile extends ScanningRecipe<AtomicBoolean> {
@Language("yml")
@Option(displayName = "File contents",
description = "Multiline text content for the file.",
example = "a:\nproperty: value\nanother:\nproperty: value",
example = "a:\n" +
" property: value\n" +
"another:\n" +
" property: value",
required = false)
@Nullable
String fileContents;
Expand Down

0 comments on commit f9d71bc

Please sign in to comment.