Skip to content

Commit 78294f2

Browse files
committed
Fixed broken links.
1 parent f16e074 commit 78294f2

File tree

2 files changed

+3
-3
lines changed
  • server/swimos_agent/src

2 files changed

+3
-3
lines changed

server/swimos_agent/src/agent_lifecycle/utility/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ impl<Agent: 'static> HandlerContext<Agent> {
877877
Fail::<T, E>::new(error)
878878
}
879879

880-
/// Attempt to open a new value lane on this agent. Note that the implementation of [`crate::AgentSpec`]
880+
/// Attempt to open a new value lane on this agent. Note that the implementation of the underlying agent
881881
/// used must support this.
882882
///
883883
/// #Arguments
@@ -896,7 +896,7 @@ impl<Agent: 'static> HandlerContext<Agent> {
896896
OpenLane::new(name.to_string(), WarpLaneKind::Value, on_done)
897897
}
898898

899-
/// Attempt to open a new map lane on this agent. Note that the implementation of [`crate::AgentSpec`]
899+
/// Attempt to open a new map lane on this agent. Note that the implementation of the underlying agent
900900
/// used must support this.
901901
///
902902
/// #Arguments

server/swimos_agent/src/lanes/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ pub trait SelectorFn<C> {
110110
}
111111

112112
/// An [event handler](crate::event_handler::EventHandler) that attempts to open a new lane for the
113-
/// agent (note that the [agent specification](crate::AgentSpec) must support this.)
113+
/// agent (note that the agent specification must support this.)
114114
pub struct OpenLane<OnDone> {
115115
name: String,
116116
kind: WarpLaneKind,

0 commit comments

Comments
 (0)