Skip to content

Commit c7e8b54

Browse files
committed
comment fix!
1 parent e7c2048 commit c7e8b54

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

crates/re_renderer/src/line_drawable_builder_allocator.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
use crate::{renderer::LineDrawDataError, LineDrawableBuilder, QueueableDrawData, RenderContext};
22

3-
/// Simple allocator mechanism to manage line strip builders.
3+
/// Simple allocator mechanism to manage line draw data builders.
44
///
5-
/// It allows you to lazily create line strip builders if the need arises and close full ones.
5+
/// It allows you to lazily create [`LineDrawableBuilder`] when the need arises and close full ones
6+
/// using a pre-determined block size.
67
/// Use this only if you don't know the number of strips and vertices ahead of time,
7-
/// otherwise use [`LineBatchesBuilder`] directly!
8+
/// otherwise use [`LineDrawableBuilder`] directly!
89
///
910
/// Creating new line strip builders is fairly expensive and should be avoided if possible!
1011
pub struct LineDrawableBuilderAllocator<'a> {

0 commit comments

Comments
 (0)