Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 84612edb authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Use `` for code font rather than ||.

Current wrong formatting:
https://developer.android.com/ndk/reference/group/bitmap#androidbitmap_compress

Bug: https://github.com/android/ndk/issues/1933
Test: treehugger
Change-Id: I7174c728fbe589e1d80be82a5f0df56e054c9609
parent e88ec57f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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.
 *