Skip to content

Commit 4a1ec94

Browse files
committed
javadoc tweaks
1 parent 531eb8a commit 4a1ec94

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/com/github/stephengold/joltjni/Edge.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public Edge setRestLength(float length) {
9595
* Assign the specified mesh vertex to the edge. (native attribute: mVertex)
9696
*
9797
* @param indexInEdge which end of the edge (0 or 1)
98-
* @param indexInMesh the index of the vertex to assign (≥0)
98+
* @param indexInMesh the index of the vertex to assign (≥0, default=0)
9999
* @return the modified settings, for chaining
100100
*/
101101
public Edge setVertex(int indexInEdge, int indexInMesh) {

src/main/java/com/github/stephengold/joltjni/NativeLibraryLoader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ private NativeLibraryLoader() {
3939
// new methods exposed
4040

4141
/**
42-
* Load a Jolt native library.
42+
* Load a native library.
4343
*
4444
* @param libraryPath the file to load (not {@code null})
45-
* @return true after successful load, otherwise false
45+
* @return {@code true} after a successful load, otherwise {@code false}
4646
*/
4747
public static boolean loadLibrary(String libraryPath) {
4848
assert libraryPath != null;

0 commit comments

Comments
 (0)