Skip to content

Commit

Permalink
Merge pull request #67 from spacewander/fmz
Browse files Browse the repository at this point in the history
chore: fix comments
  • Loading branch information
kentonv committed Oct 1, 2022
2 parents a88994b + 082982e commit f7bd5f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/workerd/server/server.c++
Expand Up @@ -492,7 +492,7 @@ private:
};

class Server::ExternalHttpService final: public Service {
// Service used when the service's config is invalid.
// Service used when the service is configured as external HTTP service.

public:
ExternalHttpService(kj::Own<kj::NetworkAddress> addrParam,
Expand Down Expand Up @@ -627,7 +627,7 @@ kj::Own<Server::Service> Server::makeExternalService(
}

class Server::NetworkService final: public Service, private WorkerInterface {
// Service used when the service's config is invalid.
// Service used when the service is configured as network service.

public:
NetworkService(kj::HttpHeaderTable& headerTable,
Expand Down Expand Up @@ -687,7 +687,7 @@ kj::Own<Server::Service> Server::makeNetworkService(config::Network::Reader conf
}

class Server::DiskDirectoryService final: public Service, private WorkerInterface {
// Service used when the service's config is invalid.
// Service used when the service is configured as disk directory service.

public:
DiskDirectoryService(config::DiskDirectory::Reader conf,
Expand Down

0 comments on commit f7bd5f4

Please sign in to comment.