Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links to native method guide #180

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ When the Java `Example` class is run, the `alert` method is called, which trigge
[`CJ3Library`]: /docs/reference/CJ3Library
[`conversion rules`]: /docs/reference/cheerpjRunLibrary#conversion-rules
[`System.loadLibrary(String libname)`]: https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#loadLibrary-java.lang.String-
[`native methods`]: /docs/11-guides/implementing-native-methods
[`Implementing Native Methods guide`]: /docs/11-guides/implementing-native-methods
[`native methods`]: /docs/guides/implementing-native-methods
[`Implementing Native Methods guide`]: /docs/guides/implementing-native-methods
[`virtual directory`]: /docs/guides/File-System-support
[`javaProperties`]: /docs/reference/cheerpjInit#javaproperties
[`documentation`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
4 changes: 2 additions & 2 deletions sites/cheerpj/src/content/docs/11-guides/library-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async function iTextExample() {

## See also

Library mode is also used for [`native` methods implemented in JavaScript][JNI]. A `native` is effectively just a shorter library mode session.
Library mode is also used for [native methods implemented in JavaScript][JNI]. A `native` is effectively just a shorter library mode session.

[JNI]: /docs/guides/Implementing-Java-native-methods-in-JavaScript
[JNI]: /docs/guides/implementing-native-methods
[`cheerpjRunLibrary`]: /docs/reference/cheerpjRunLibrary
Loading