FYI there appears to be a typo in https://dev.java/learn/modernio/ (archived at https://web.archive.org/web/20260204185039/https://dev.java/learn/modernio/ ) (from #26 ) e.g. as in line at https://github.com/java/devjava-content/blob/5bde67032f9c9d8230a3700d2d700da97bd595d2/app/pages/learn/01_tutorial/04_mastering-the-api/02_modern_io/01_modern_io.md?plain=1#L52 : ``` Here, `path` is an instance of [`java.nio.Path`](javadoc:Path), ``` It seems it should be `java.nio.file.Path` instead. That is what the latest javadoc link resolves to ( https://web.archive.org/web/20251231083107/https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/nio/file/Path.html ): <img width="1745" height="1103" alt="Image" src="https://github.com/user-attachments/assets/401106b7-7873-442a-a87d-b81a242d569f" /> Thanks!