diff --git a/source/ch8_filehandling.ptx b/source/ch8_filehandling.ptx
index 05a8ca7..e2b96b4 100644
--- a/source/ch8_filehandling.ptx
+++ b/source/ch8_filehandling.ptx
@@ -4,17 +4,10 @@
- File handling is an integral part of programming. Most programming languages have the ability to read from, write to, create, delete, move, and copy files.
-
- In Python, most built-in libraries are available without needing to explicitly import additional packages, but some libraries like
@@ -42,12 +35,13 @@
- Java includes a class called
import java.io.File;
- import java.io.IOException;public class Main {
+ import java.io.IOException;
+ public class Main {
public static void main(String[] args) {
try {
File myFile = new File("newfile.txt");