1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Add more doc-links in docstrings (#1419)

This commit is contained in:
4JX
2022-04-03 18:18:35 +02:00
committed by GitHub
parent 861b0e11ba
commit 6091370962
60 changed files with 257 additions and 257 deletions

View File

@@ -117,7 +117,7 @@ impl<'l> StripLayout<'l> {
self.add(width, height, add_contents)
}
/// only needed for layouts with multiple lines, like [`Table`].
/// only needed for layouts with multiple lines, like [`Table`](crate::Table).
pub fn end_line(&mut self) {
match self.direction {
CellDirection::Horizontal => {

View File

@@ -66,7 +66,7 @@ impl Size {
self
}
/// Allowed range of movement (in points), if in a resizable [`Table`].
/// Allowed range of movement (in points), if in a resizable [`Table`](crate::table::Table).
pub fn range(self) -> (f32, f32) {
match self {
Self::Absolute { range, .. }