Skip to content

Commit

Permalink
improve inlay hint
Browse files Browse the repository at this point in the history
  • Loading branch information
shumbo committed Oct 4, 2023
1 parent 8f8f81a commit 68ca499
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chorus_lib/src/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,10 +364,11 @@ where
/// Constructs a `Located` struct *NOT* located at the projection target.
///
/// Use this method to run a choreography that takes a located value as an input.
pub fn remote<V, L2: ChoreographyLocation, Index2>(&self, _l2: L2) -> Located<V, L2>
pub fn remote<V, L2: ChoreographyLocation, Index2>(&self, at: L2) -> Located<V, L2>
where
L2: Member<<L1 as Member<LS, Index>>::Remainder, Index2>,
{
_ = at;
Located::remote()
}

Expand Down

0 comments on commit 68ca499

Please sign in to comment.