@@ -62,7 +62,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
6262 ///
6363 /// # Examples
6464 ///
65- /// ```rust
65+ /// ```
6666 /// # use datasketches::countmin::CountMinSketch;
6767 /// let sketch = CountMinSketch::<i64>::new(4, 128);
6868 /// assert_eq!(sketch.num_buckets(), 128);
@@ -83,7 +83,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
8383 ///
8484 /// # Examples
8585 ///
86- /// ```rust
86+ /// ```
8787 /// # use datasketches::countmin::CountMinSketch;
8888 /// let sketch = CountMinSketch::<i64>::with_seed(4, 64, 42);
8989 /// assert_eq!(sketch.seed(), 42);
@@ -154,7 +154,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
154154 ///
155155 /// # Examples
156156 ///
157- /// ```rust
157+ /// ```
158158 /// # use datasketches::countmin::CountMinSketch;
159159 /// let mut sketch = CountMinSketch::<i64>::new(4, 128);
160160 /// sketch.update("apple");
@@ -168,7 +168,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
168168 ///
169169 /// # Examples
170170 ///
171- /// ```rust
171+ /// ```
172172 /// # use datasketches::countmin::CountMinSketch;
173173 /// let mut sketch = CountMinSketch::<i64>::new(4, 128);
174174 /// sketch.update_with_weight("banana", 3);
@@ -192,7 +192,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
192192 ///
193193 /// # Examples
194194 ///
195- /// ```rust
195+ /// ```
196196 /// # use datasketches::countmin::CountMinSketch;
197197 /// let mut sketch = CountMinSketch::<i64>::new(4, 128);
198198 /// sketch.update_with_weight("pear", 2);
@@ -232,7 +232,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
232232 ///
233233 /// # Examples
234234 ///
235- /// ```rust
235+ /// ```
236236 /// # use datasketches::countmin::CountMinSketch;
237237 /// let mut left = CountMinSketch::<i64>::new(4, 128);
238238 /// let mut right = CountMinSketch::<i64>::new(4, 128);
@@ -262,7 +262,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
262262 ///
263263 /// # Examples
264264 ///
265- /// ```rust
265+ /// ```
266266 /// # use datasketches::countmin::CountMinSketch;
267267 /// # let mut sketch = CountMinSketch::<i64>::new(4, 128);
268268 /// # sketch.update("apple");
@@ -307,7 +307,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
307307 ///
308308 /// # Examples
309309 ///
310- /// ```rust
310+ /// ```
311311 /// # use datasketches::countmin::CountMinSketch;
312312 /// # let mut sketch = CountMinSketch::<i64>::new(4, 64);
313313 /// # sketch.update("apple");
@@ -323,7 +323,7 @@ impl<T: CountMinValue> CountMinSketch<T> {
323323 ///
324324 /// # Examples
325325 ///
326- /// ```rust
326+ /// ```
327327 /// # use datasketches::countmin::CountMinSketch;
328328 /// # let mut sketch = CountMinSketch::<i64>::with_seed(4, 64, 7);
329329 /// # sketch.update("apple");
@@ -417,7 +417,7 @@ impl<T: UnsignedCountMinValue> CountMinSketch<T> {
417417 ///
418418 /// # Examples
419419 ///
420- /// ```rust
420+ /// ```
421421 /// # use datasketches::countmin::CountMinSketch;
422422 /// let mut sketch = CountMinSketch::<u64>::new(4, 128);
423423 /// sketch.update_with_weight("apple", 3);
@@ -438,7 +438,7 @@ impl<T: UnsignedCountMinValue> CountMinSketch<T> {
438438 ///
439439 /// # Examples
440440 ///
441- /// ```rust
441+ /// ```
442442 /// # use datasketches::countmin::CountMinSketch;
443443 /// let mut sketch = CountMinSketch::<u64>::new(4, 128);
444444 /// sketch.update_with_weight("apple", 3);
0 commit comments