diff --git a/crates/marine-macro-impl/tests/generation_tests/records/call_parameters/expanded.rs b/crates/marine-macro-impl/tests/generation_tests/records/call_parameters/expanded.rs index 1c121f3..693a566 100644 --- a/crates/marine-macro-impl/tests/generation_tests/records/call_parameters/expanded.rs +++ b/crates/marine-macro-impl/tests/generation_tests/records/call_parameters/expanded.rs @@ -5,7 +5,7 @@ pub struct CallParameters { pub service_id: String, /// Id of the service creator. pub service_creator_peer_id: String, - /// Id of the host which run this service. + /// PeerId of the peer who hosts this service. pub host_id: String, /// Id of the particle which execution resulted a call this service. pub particle_id: String, diff --git a/crates/marine-macro-impl/tests/generation_tests/records/call_parameters/marine.rs b/crates/marine-macro-impl/tests/generation_tests/records/call_parameters/marine.rs index 59f8cc6..79f2450 100644 --- a/crates/marine-macro-impl/tests/generation_tests/records/call_parameters/marine.rs +++ b/crates/marine-macro-impl/tests/generation_tests/records/call_parameters/marine.rs @@ -8,7 +8,7 @@ pub struct CallParameters { /// Id of the service creator. pub service_creator_peer_id: String, - /// Id of the host which run this service. + /// PeerId of the peer who hosts this service. pub host_id: String, /// Id of the particle which execution resulted a call this service. diff --git a/sdk/src/call_parameters.rs b/sdk/src/call_parameters.rs index d33dac1..7f47ed3 100644 --- a/sdk/src/call_parameters.rs +++ b/sdk/src/call_parameters.rs @@ -42,7 +42,7 @@ pub struct CallParameters { /// Id of the service creator. pub service_creator_peer_id: String, - /// Id of the host which run this service. + /// PeerId of the peer who hosts this service. pub host_id: String, /// Id of the particle which execution resulted a call this service.