aboutsummaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2025-05-30 15:46:52 +0000
committerstephan <stephan@noemail.net>2025-05-30 15:46:52 +0000
commit7ac10ec8b5d03766da0deaebbf5e7c7199617d7c (patch)
treece8b74335aa770416cedfc7f3fada8a6c81e839b /ext
parent8ae57fab64aa1e16596763b9d9435aa1f7e9933d (diff)
downloadsqlite-7ac10ec8b5d03766da0deaebbf5e7c7199617d7c.tar.gz
sqlite-7ac10ec8b5d03766da0deaebbf5e7c7199617d7c.zip
Random typo fixes in JNI docs.
FossilOrigin-Name: f63608a3847469b130e029cc569fe6f03a9053352ec43c10d69849cbab4f61c5
Diffstat (limited to 'ext')
-rw-r--r--ext/jni/src/org/sqlite/jni/capi/AggregateFunction.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/jni/src/org/sqlite/jni/capi/AggregateFunction.java b/ext/jni/src/org/sqlite/jni/capi/AggregateFunction.java
index 1fa6c6b80..912f6ed5b 100644
--- a/ext/jni/src/org/sqlite/jni/capi/AggregateFunction.java
+++ b/ext/jni/src/org/sqlite/jni/capi/AggregateFunction.java
@@ -120,7 +120,7 @@ public abstract class AggregateFunction<T> implements SQLFunction {
argument, the context is set to the given initial value. On all other
calls, the 2nd argument is ignored.
- @see SQLFunction.PerContextState#getAggregateState
+ @see AggregateFunction.PerContextState#getAggregateState
*/
protected final ValueHolder<T> getAggregateState(sqlite3_context cx, T initialValue){
return map.getAggregateState(cx, initialValue);
@@ -130,7 +130,7 @@ public abstract class AggregateFunction<T> implements SQLFunction {
To be called from the implementation's xFinal() method to fetch
the final state of the UDF and remove its mapping.
- see SQLFunction.PerContextState#takeAggregateState
+ see AggregateFunction.PerContextState#takeAggregateState
*/
protected final T takeAggregateState(sqlite3_context cx){
return map.takeAggregateState(cx);