Skip to content

Commit

Permalink
Doclinks
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Oct 8, 2024
1 parent 428a009 commit 9eeff57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rerun_py/src/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub(crate) fn register(m: &Bound<'_, PyModule>) -> PyResult<()> {
Ok(())
}

/// Python binding for [`IndexColumnDescriptor`]
/// Python binding for `IndexColumnDescriptor`
#[pyclass(frozen, name = "IndexColumnDescriptor")]
#[derive(Clone)]
struct PyIndexColumnDescriptor(TimeColumnDescriptor);
Expand All @@ -59,7 +59,7 @@ impl From<TimeColumnDescriptor> for PyIndexColumnDescriptor {
}
}

/// Python binding for [`IndexColumnSelector`]
/// Python binding for `IndexColumnSelector`
#[pyclass(frozen, name = "IndexColumnSelector")]
#[derive(Clone)]
struct PyIndexColumnSelector(TimeColumnSelector);
Expand Down

0 comments on commit 9eeff57

Please sign in to comment.