Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit c553e90

Browse files
committed
fix javadoc
1 parent 70348fc commit c553e90

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1

google-cloud-spanner/src/main/java/com/google/cloud/spanner/spi/v1/SsFormat.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public static void appendNotNullMarkerNullOrderedLast(GrowableByteArrayOutputStr
143143
* Appends a boolean value in ascending (increasing) sort order.
144144
*
145145
* <p>Boolean values are encoded using unsigned integer encoding where false=0 and true=1. This
146-
* preserves the natural ordering where false < true.
146+
* preserves the natural ordering where false &lt; true.
147147
*
148148
* @param out the output stream to append to
149149
* @param value the boolean value to encode
@@ -161,7 +161,7 @@ public static void appendBoolIncreasing(GrowableByteArrayOutputStream out, boole
161161
* Appends a boolean value in descending (decreasing) sort order.
162162
*
163163
* <p>Boolean values are encoded using unsigned integer encoding where false=0 and true=1, then
164-
* inverted for descending order. This preserves reverse ordering where true < false.
164+
* inverted for descending order. This preserves reverse ordering where true &lt; false.
165165
*
166166
* @param out the output stream to append to
167167
* @param value the boolean value to encode

0 commit comments

Comments
 (0)