summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2023-09-19 17:45:54 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-09-19 17:45:54 +0000
commitaedcfe8397afed5eb5f823e5fe40b7cbf3c1c908 (patch)
tree3ba0f4d31f48f395befa2b466574ee5c568966b6
parentba1f9d6702d1ae1b2d36d2088e15451d0bf9ff30 (diff)
parent84612edbefcb547dfae1a441d05a151b64c0473b (diff)
Merge "Use `` for code font rather than ||." into main
-rw-r--r--include/android/bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/android/bitmap.h b/include/android/bitmap.h
index 35f87f96ae..87a14c021d 100644
--- a/include/android/bitmap.h
+++ b/include/android/bitmap.h
@@ -196,7 +196,7 @@ enum AndroidBitmapCompressFormat {
*
* @param userContext Pointer to user-defined data passed to
* {@link AndroidBitmap_compress}.
- * @param data Compressed data of |size| bytes to write.
+ * @param data Compressed data of `size` bytes to write.
* @param size Length in bytes of data to write.
* @return Whether the operation succeeded.
*/
@@ -205,7 +205,7 @@ typedef bool (*AndroidBitmap_CompressWriteFunc)(void* userContext,
size_t size) __INTRODUCED_IN(30);
/**
- * Compress |pixels| as described by |info|.
+ * Compress `pixels` as described by `info`.
*
* Available since API level 30.
*