aboutsummaryrefslogtreecommitdiffstats
path: root/doc/GlueGen_Mapping.md
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-07-10 20:51:35 +0200
committerSven Gothel <[email protected]>2023-07-10 20:51:35 +0200
commita03df850033d11386471534840a83bbac81304df (patch)
treee99853cd2c27ef4ad2bab1b94a3debdb7ff7ca77 /doc/GlueGen_Mapping.md
parent60277196f721875a4114e065fdf1ba24521811be (diff)
doc/GlueGen_Mapping.md: Typos 'UserParam' -> 'UserParamClass' (2 more occassions)
Diffstat (limited to 'doc/GlueGen_Mapping.md')
-rw-r--r--doc/GlueGen_Mapping.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/GlueGen_Mapping.md b/doc/GlueGen_Mapping.md
index 38a9fcc..bced572 100644
--- a/doc/GlueGen_Mapping.md
+++ b/doc/GlueGen_Mapping.md
@@ -796,7 +796,7 @@ It's a homogeneous `UserParam` mapping, where the native side receives a simple
The static Java callback dispatcher fetches the Java `UserParam` *Object* from the key-mapped data value.
-Instead of using the default plain Java `Object` type, a [custom *UserParam*](#custom-callback-userparamclass) can be specified [in the configuration](#javacallback-configuration), which is recommended for more clarity in the resulting API.
+Instead of using the default plain Java `Object` type, a [custom *UserParamClass*](#custom-callback-userparamclass) can be specified [in the configuration](#javacallback-configuration), which is recommended for more clarity in the resulting API.
#### Struct Type User Param (Homogeneous)
A [GlueGen generated *Struct type*](#struct-mapping) is used for both, `SetCallbackFunctionName` and `CallbackFunctionType`.
@@ -994,7 +994,7 @@ public interface Bindingtest2 {
This example demonstrates a [homogeneous *Java Object* `UserParam` mapping](#pure-java-object-user-type-default) with a [key-mapped](#javacallback-key-definition) `CallbackFunction` and `UserParam`.
-Additionally a [custom *UserParam*](#custom-callback-userparamclass) type `ALCcontext` is being used for more clarity in the resulting API.
+Additionally a [custom *UserParamClass*](#custom-callback-userparamclass) type `ALCcontext` is being used for more clarity in the resulting API.
This example is derived from OpenAL's `AL_SOFT_callback_buffer` extension.