aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-08-10 11:08:58 +0200
committerSven Gothel <[email protected]>2023-08-10 11:08:58 +0200
commitb3dd6410aad591ddaec4eddfb8d894893368a54a (patch)
tree76eb563bc3bfb2609f2fe0e26f7641e7d69895e8 /src
parenta7e62d106b1ba89d0973e5ccb00982e8ae8df9e4 (diff)
GlueGen: 'from expression' -> 'with expression'
Diffstat (limited to 'src')
-rw-r--r--src/java/com/jogamp/gluegen/GlueGen.java2
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);