diff --git a/proposals/0428-resolve-distributed-actor-protocols.md b/proposals/0428-resolve-distributed-actor-protocols.md index 52a6964f52..e7b4128e3d 100644 --- a/proposals/0428-resolve-distributed-actor-protocols.md +++ b/proposals/0428-resolve-distributed-actor-protocols.md @@ -90,7 +90,7 @@ The macro must be attached to the a `protocol` declaration that is a `Distribute import Distributed @Resolvable -protocol Greeter where ActorSystem: DistributedActorSystem { +protocol Greeter: DistributedActor where ActorSystem: DistributedActorSystem { distributed func greet(name: String) -> String } ```