Skip to content

Commit 485b16e

Browse files
committed
misc: trim trailing whitespace
To avoid issues in future changes downstream.
1 parent d1e6bb8 commit 485b16e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/minisketch.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,12 @@ MINISKETCH_API void minisketch_serialize(const minisketch* sketch, unsigned char
115115
MINISKETCH_API void minisketch_deserialize(minisketch* sketch, const unsigned char* input);
116116

117117
/** Add an element to a sketch.
118-
*
118+
*
119119
* If the element to be added is too large for the sketch, the most significant
120120
* bits of the element are dropped. More precisely, if the element size of
121121
* `sketch` is b bits, then this function adds the unsigned integer represented
122122
* by the b least significant bits of `element` to `sketch`.
123-
*
123+
*
124124
* If the element to be added is 0 (after potentially dropping the most significant
125125
* bits), then this function is a no-op. Sketches cannot contain an element with
126126
* the value 0.

0 commit comments

Comments
 (0)