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
1 change: 1 addition & 0 deletions .github/change-filters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ rust: &rust
- "hugr-cli/**"
- "hugr-core/**"
- "hugr-passes/**"
- "hugr-persistent/**"
- "specification/schema/**"

std-extensions:
Expand Down
5 changes: 2 additions & 3 deletions hugr-persistent/src/wire.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ pub struct PersistentWire {

/// A wire within a commit HUGR of a [`PersistentHugr`].
///
/// This is a `Wire` valid in a commit HUGR of a [`PersistentHugr`], along with
/// the ID of the commit that contains the wire; this is equivalent to storing a
/// wire of type `Wire<PatchNode>`.
/// Also stores the ID of the commit that contains the wire;
/// equivalent to (indeed contains) a `Wire<PatchNode>`.
///
/// Note that it does not correspond to a valid wire in a [`PersistentHugr`]
/// (see [`PersistentWire`]): some of its connected ports may be on deleted or
Expand Down
Loading