Skip to content

Commit 2c5edff

Browse files
formatting
1 parent 4168f19 commit 2c5edff

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/bridge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ pub mod base {
128128
/// and whose value will be stored in the `InputData`
129129
///
130130
/// # Example
131-
/// ```
131+
/// ```rust,ignore
132132
/// let dataframe = DataFrame::new(...);
133133
/// let named_value = data!(&dataframe)?;
134134
/// // This will use TryFrom implementation to convert the data

src/bridge/python/altair.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ impl Plot<Altair> {
2222
/// - Err(ChartonError) if there was an error during execution
2323
///
2424
/// # Example
25-
/// ```
25+
/// ```rust,ignore
2626
/// let json_spec = plot.to_json()?;
2727
/// // Use the JSON specification in a web application or save to file
2828
/// ```

src/chart.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ impl Chart<NoMark> {
7777
///
7878
/// # Example
7979
///
80-
/// ```
80+
/// ```rust,ignore
8181
/// let df = df!["x" => [1, 2], "y" => [3, 4]]?;
8282
/// // Returns a Chart<NoMark>
8383
/// let base = Chart::build(&df)?;

0 commit comments

Comments
 (0)