Skip to content

Commit

Permalink
Fixes mistake in JPMS docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jqno committed Sep 29, 2024
1 parent 938d648 commit 9a192b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/_manual/14-jpms.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ open module my.module { // Note: open
Note that this approach opens up the entire module for reflection. If you do not want this, even in your tests, you can be more precise in what you open up:

{% highlight java %}
open module my.module {
module my.module {
exports my.module;
opens my.module.package.model; // Open model package

Expand Down

0 comments on commit 9a192b8

Please sign in to comment.