From 9280d2a14537bff187c7a25ef4838c82b3eba52d Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Thu, 13 Apr 2023 17:59:58 -0400 Subject: [PATCH] typo(config): public url comment --- server/config/file.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/config/file.go b/server/config/file.go index a2c3296c3..7ee81d529 100644 --- a/server/config/file.go +++ b/server/config/file.go @@ -18,7 +18,7 @@ ssh: listen_addr: "{{ .SSH.ListenAddr }}" # The public URL of the SSH server. - # This is the address will be used to clone repositories. + # This is the address that will be used to clone repositories. public_url: "{{ .SSH.PublicURL }}" # The path to the SSH server's private key. @@ -66,7 +66,7 @@ http: tls_cert_path: "{{ .HTTP.TLSCertPath }}" # The public URL of the HTTP server. - # This is the address will be used to clone repositories. + # This is the address that will be used to clone repositories. # Make sure to use https:// if you are using TLS. public_url: "{{ .HTTP.PublicURL }}"