Skip to content

Commit b5be80c

Browse files
authored
add missing right curly brace at the correct place
1 parent e53c6f1 commit b5be80c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Language/enumeration.pod6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ sub check-dir-status($dir --> DirStat) {
3434
}
3535
# if we get here the dir must not exist
3636
return NoDir;
37-
}
3837
}
3938
4039
# test each of three directories by a non-root user
@@ -47,6 +46,7 @@ for @dirs -> $dir {
4746
say "status of dir '$dir': $stat";
4847
if $stat ~~ CanWrite {
4948
say " user can write to dir: $dir";
49+
}
5050
}
5151
# output
5252
# status of dir '/tmp': CanWrite

0 commit comments

Comments
 (0)