diff --git a/livekit/livekit_room.twirp.go b/livekit/livekit_room.twirp.go index d7c5d8678..b806ee7e7 100644 --- a/livekit/livekit_room.twirp.go +++ b/livekit/livekit_room.twirp.go @@ -65,7 +65,7 @@ type RoomService interface { UpdateRoomMetadata(context.Context, *UpdateRoomMetadataRequest) (*Room, error) // Cloud-only - // a connected participant's track(s) to another room. Requires `roomAdmin` and `destinationRoom`. The forwarding will + // Forward a connected participant's track(s) to another room. Requires `roomAdmin` and `destinationRoom`. The forwarding will // stop when the participant leaves the room or `RemoveParticipant` has been called in the destination room. // A participant can be forwarded to multiple rooms. The destination room will be created if it does not exist. ForwardParticipant(context.Context, *ForwardParticipantRequest) (*ForwardParticipantResponse, error) diff --git a/protobufs/livekit_room.proto b/protobufs/livekit_room.proto index e7bd19940..45f4f54f7 100644 --- a/protobufs/livekit_room.proto +++ b/protobufs/livekit_room.proto @@ -64,7 +64,7 @@ service RoomService { rpc UpdateRoomMetadata (UpdateRoomMetadataRequest) returns (Room); // Cloud-only - // a connected participant's track(s) to another room. Requires `roomAdmin` and `destinationRoom`. The forwarding will + // Forward a connected participant's track(s) to another room. Requires `roomAdmin` and `destinationRoom`. The forwarding will // stop when the participant leaves the room or `RemoveParticipant` has been called in the destination room. // A participant can be forwarded to multiple rooms. The destination room will be created if it does not exist. rpc ForwardParticipant(ForwardParticipantRequest) returns (ForwardParticipantResponse);