From 195e43e6a9cbfe6a816488ab85cf33819aadc87e Mon Sep 17 00:00:00 2001 From: Habiba Sorour Date: Wed, 22 Jul 2026 20:20:49 +0300 Subject: [PATCH] fixed a typo in 8.2 --- source/ch8_filehandling.ptx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ch8_filehandling.ptx b/source/ch8_filehandling.ptx index 89909cb..ba5d0cf 100644 --- a/source/ch8_filehandling.ptx +++ b/source/ch8_filehandling.ptx @@ -84,7 +84,7 @@ public class CreateFile { public static void main(String[] args) { // First, create a File object that represents "myfile.txt" File myFile = new File("myfile.txt"); - // Mext, print the file path (just the filename.) + // Next, print the file path (just the filename.) System.out.println(myFile); } }