From 7e89feabafc022b01f6635db0526079261593a48 Mon Sep 17 00:00:00 2001 From: Garrett Delfosse Date: Tue, 9 Jan 2024 17:59:52 +0000 Subject: [PATCH] fix: correct app url format in comment --- codersdk/deployment.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/codersdk/deployment.go b/codersdk/deployment.go index ce80e32622167..c3e2db238e4ef 100644 --- a/codersdk/deployment.go +++ b/codersdk/deployment.go @@ -2203,10 +2203,10 @@ type AppHostResponse struct { Host string `json:"host"` } -// AppHost returns the site-wide application wildcard hostname without the -// leading "*.", e.g. "apps.coder.com". Apps are accessible at: -// "------.", e.g. -// "my-app--agent--workspace--username.apps.coder.com". +// AppHost returns the site-wide application wildcard hostname +// e.g. "*--apps.coder.com". Apps are accessible at: +// "------", e.g. +// "my-app--agent--workspace--username--apps.coder.com". // // If the app host is not set, the response will contain an empty string. func (c *Client) AppHost(ctx context.Context) (AppHostResponse, error) {