From 1d4a1926f5c3e9d7fb77e994d149fa3251ec2b3d Mon Sep 17 00:00:00 2001 From: James M Snell Date: Mon, 19 Sep 2022 13:21:13 -0700 Subject: [PATCH] Update runtime name in workerd.capnp comments --- src/workerd/server/workerd.capnp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/workerd/server/workerd.capnp b/src/workerd/server/workerd.capnp index 6b6edb2acfb..fa54c76e532 100644 --- a/src/workerd/server/workerd.capnp +++ b/src/workerd/server/workerd.capnp @@ -3,7 +3,7 @@ # https://opensource.org/licenses/Apache-2.0 @0xe6afd26682091c01; -# This file defines the schema for configuring the open-source Cloudflare Workers Runtime. +# This file defines the schema for configuring the workerd runtime. # # A config file can be written as a `.capnp` file that imports this file and then defines a # constant of type `Config`. Alternatively, various higher-level tooling (e.g. wrangler) may @@ -11,12 +11,12 @@ # # To start a server with a config, do: # -# cfwrk serve my-config.capnp constantName +# workerd serve my-config.capnp constantName # -# You can also build a new self-contained binary which combines the `cfwrk` binary with your +# You can also build a new self-contained binary which combines the `workerd` binary with your # configuration and all your source code: # -# cfwrk bundle my-config.capnp constantName -o my-server-bin +# workerd compile my-config.capnp constantName -o my-server-bin # # This binary can then be run stand-alone. #