diff options
author | Sven Gothel <[email protected]> | 2023-08-10 11:08:58 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-10 11:08:58 +0200 |
commit | b3dd6410aad591ddaec4eddfb8d894893368a54a (patch) | |
tree | 76eb563bc3bfb2609f2fe0e26f7641e7d69895e8 | |
parent | a7e62d106b1ba89d0973e5ccb00982e8ae8df9e4 (diff) |
GlueGen: 'from expression' -> 'with expression'
-rw-r--r-- | src/java/com/jogamp/gluegen/GlueGen.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/java/com/jogamp/gluegen/GlueGen.java b/src/java/com/jogamp/gluegen/GlueGen.java index 5d656a4..42d5ed7 100644 --- a/src/java/com/jogamp/gluegen/GlueGen.java +++ b/src/java/com/jogamp/gluegen/GlueGen.java @@ -302,7 +302,7 @@ public class GlueGen implements GlueEmitterControls { comment.append(def.getName()); comment.append("\""); } - comment.append(" from expression '<code>"+def.getNativeExpr()+"</code>'"); + comment.append(" with expression '<code>"+def.getNativeExpr()+"</code>'"); if (comment.length() > 0) { emit.emitDefine(def, comment.toString()); comment.setLength(0); |