Skip to content

Commit

Permalink
Fix formating in Lecture 07 code snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
100yo committed Nov 22, 2023
1 parent f293bf5 commit 79570d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 07-io-streams-and-files/lecture/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ DirectoryStream<Path> newDirectoryStream(Path dir)
Path dir = Path.of("/somedir");
try (DirectoryStream<Path> stream = Files.newDirectoryStream(dir)) {

for (Path fileOrSubDir: stream) {
for (Path fileOrSubDir : stream) {
// употреба на fileOrSubDir
}

Expand Down

0 comments on commit 79570d8

Please sign in to comment.