Skip to content

Commit be82b2f

Browse files
committed
fix doc comments
1 parent 3defbac commit be82b2f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

autd3-link-simulator/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pub struct Simulator {
108108
}
109109

110110
impl Simulator {
111-
/// Creates a new [`SimulatorBuilder`].
111+
/// Creates a new [`Simulator`].
112112
pub const fn new(addr: SocketAddr) -> Simulator {
113113
Simulator {
114114
addr,

autd3-link-twincat/src/local/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pub struct TwinCAT {
4242
}
4343

4444
impl TwinCAT {
45-
/// Creates a new [`TwinCATBuilder`].
45+
/// Creates a new [`TwinCAT`].
4646
pub fn new() -> Result<TwinCAT, LinkError> {
4747
Ok(TwinCAT {
4848
port: 0,

autd3-link-twincat/src/remote/remote_twincat_link.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub struct RemoteTwinCATOption {
3838
}
3939

4040
impl RemoteTwinCAT {
41-
/// Creates a new [`RemoteTwinCATBuilder`].
41+
/// Creates a new [`RemoteTwinCAT`].
4242
pub fn new(server_ams_net_id: impl Into<String>, option: RemoteTwinCATOption) -> RemoteTwinCAT {
4343
RemoteTwinCAT {
4444
server_ams_net_id: server_ams_net_id.into(),

0 commit comments

Comments
 (0)