Skip to content

Commit 3af1f05

Browse files
committed
avoid uninit string warnings
1 parent 30c7f8e commit 3af1f05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xt/aspell.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ my @jobs = @files.race.map: -> $file {
5555
# anything with a leading space is considered code, and we just
5656
# concat all the code and text into one block of each per file
5757

58-
my Str $code;
59-
my Str $text;
58+
my Str $code = '';
59+
my Str $text = '';
6060

6161
# Process the text so that aspell understands it.
6262
# Every line starts with a ^

0 commit comments

Comments
 (0)