Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/toolpath-cursor/src/io.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl CursorIO {
}

/// All composer ids known to the database, including drafts. Use
/// [`list_composers`] when you only want sessions that have at
/// [`Self::list_composers`] when you only want sessions that have at
/// least one bubble on disk.
pub fn list_composer_ids(&self) -> Result<Vec<String>> {
self.open_db()?.list_composer_ids()
Expand Down
2 changes: 1 addition & 1 deletion crates/toolpath-cursor/src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl DbReader {

/// All composer ids known to the DB, in the order they appear in
/// `composer.composerHeaders.allComposers`. Composers with no
/// bubbles are included — call [`composer_has_bubbles`] to filter
/// bubbles are included — call [`Self::composer_has_bubbles`] to filter
/// drafts.
pub fn list_composer_ids(&self) -> Result<Vec<String>> {
Ok(self
Expand Down
Loading