Skip to content

Commit

Permalink
chore: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
appflowy committed Jan 30, 2024
1 parent ef81e45 commit e1f7f88
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ pub trait CellDataDecoder: TypeOption {
/// Same as [CellDataDecoder::stringify_cell_data] but the input parameter is the [Cell]
fn stringify_cell(&self, cell: &Cell) -> String;

// Decode the cell into f64
// Different field type has different way to decode the cell data into f64
// If the field type doesn't support to decode the cell data into f64, it will return None
/// Decode the cell into f64
/// Different field type has different way to decode the cell data into f64
/// If the field type doesn't support to decode the cell data into f64, it will return None
fn numeric_cell(&self, cell: &Cell) -> Option<f64>;
}

Expand Down

0 comments on commit e1f7f88

Please sign in to comment.