@@ -398,12 +398,12 @@ pub mod braille {
398
398
/// Marker to use when plotting data points
399
399
#[ derive( Debug , Default , Display , EnumString , Clone , Copy , Eq , PartialEq , Hash ) ]
400
400
pub enum Marker {
401
- /// One point per cell in shape of dot ("•" )
401
+ /// One point per cell in shape of dot (`•` )
402
402
#[ default]
403
403
Dot ,
404
- /// One point per cell in shape of a block ("█" )
404
+ /// One point per cell in shape of a block (`█` )
405
405
Block ,
406
- /// One point per cell in the shape of a bar ("▄" )
406
+ /// One point per cell in the shape of a bar (`▄` )
407
407
Bar ,
408
408
/// Use the [Unicode Braille Patterns](https://en.wikipedia.org/wiki/Braille_Patterns) block to
409
409
/// represent data points.
@@ -412,9 +412,9 @@ pub enum Marker {
412
412
///
413
413
/// Note: Support for this marker is limited to terminals and fonts that support Unicode
414
414
/// Braille Patterns. If your terminal does not support this, you will see unicode replacement
415
- /// characters (� ) instead of Braille dots.
415
+ /// characters (`�` ) instead of Braille dots (`⠓`, `⣇`, `⣿`) .
416
416
Braille ,
417
- /// Use the unicode block and half block characters ("█", "▄" , and "▀" ) to represent points in
417
+ /// Use the unicode block and half block characters (`█`, `▄` , and `▀` ) to represent points in
418
418
/// a grid that is double the resolution of the terminal. Because each terminal cell is
419
419
/// generally about twice as tall as it is wide, this allows for a square grid of pixels.
420
420
HalfBlock ,
0 commit comments