diff options
author | Sven Gothel <[email protected]> | 2022-01-28 04:36:35 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-01-28 04:36:35 +0100 |
commit | 8181ddb5c41a271ab2258da50ac02ac2ff58b5cf (patch) | |
tree | 609160757efd4d802afa740d15fb89edb25bd29e /java/org | |
parent | c42a8d3af2f86a5a3b3bddbd04b73ca9e0f1dc6a (diff) |
DBGatt[Char|Desc]: Fix API doc typo
Diffstat (limited to 'java/org')
-rw-r--r-- | java/org/direct_bt/DBGattChar.java | 2 | ||||
-rw-r--r-- | java/org/direct_bt/DBGattDesc.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/java/org/direct_bt/DBGattChar.java b/java/org/direct_bt/DBGattChar.java index 5579e290..6d93e3f8 100644 --- a/java/org/direct_bt/DBGattChar.java +++ b/java/org/direct_bt/DBGattChar.java @@ -117,7 +117,7 @@ public final class DBGattChar implements AutoCloseable public final List<DBGattDesc> getDescriptors() { return descriptors; } /** - * Return a copy this characteristic's native {@link DBGattValue} value. + * Return a copy of this characteristic's native {@link DBGattValue} value. * * Its capacity defines the maximum writable variable length * and its size defines the maximum writable fixed length. diff --git a/java/org/direct_bt/DBGattDesc.java b/java/org/direct_bt/DBGattDesc.java index f11b8565..a780c501 100644 --- a/java/org/direct_bt/DBGattDesc.java +++ b/java/org/direct_bt/DBGattDesc.java @@ -60,7 +60,7 @@ public final class DBGattDesc implements AutoCloseable public String getType() { return type; } /** - * Return a copy this characteristic descriptor's native {@link DBGattValue} value. + * Return a copy of this characteristic descriptor's native {@link DBGattValue} value. * * Its capacity defines the maximum writable variable length * and its size defines the maximum writable fixed length. |