From 69266f01a7a324d126805d778b07fedefd6d1337 Mon Sep 17 00:00:00 2001 From: Christopher Schnick Date: Sat, 23 Nov 2024 16:18:37 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ab9ea49..cb89bba 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ try (ModuleFileSystem fs = ModuleFileSystem.create("module:/com.myorg.mymodule") In the above example, we explicitly use the ModuleFileSystem class to automatically get ModulePath instances when creating paths. This allows us to use the `getWrappedPath()` method to obtain the internal path, which returns an `file:`, `jar:`, or `jrt:` URL. You can then use this URL to access any resources of the module in a normal fashion by passing the URL. -Note that this requires had a file system to be created through the `ModuleFileSystem` class, not the `FileSystem` class. +Note that this requires a file system to be created through the `ModuleFileSystem` class, not the `FileSystem` class. ### Bypassing Encapsulation