From 66f5b5bb535035d6c4a33560e7ad2466adb2e537 Mon Sep 17 00:00:00 2001 From: Naoki Kosaka Date: Wed, 29 Jan 2020 21:54:16 +0900 Subject: [PATCH] Fix typos. --- State/state.go | 2 +- main.go | 2 +- worker/worker.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/State/state.go b/State/state.go index e708bce..b1055d6 100644 --- a/State/state.go +++ b/State/state.go @@ -19,7 +19,7 @@ const ( CreateAsAnnounce ) -// RelayState : Store subscriptions and relay configrations +// RelayState : Store subscriptions and relay configurations type RelayState struct { RedisClient *redis.Client notifiable bool diff --git a/main.go b/main.go index 0578448..1cff124 100644 --- a/main.go +++ b/main.go @@ -76,7 +76,7 @@ func initConfig() { WebfingerResource.GenerateFromActor(hostURL, &Actor) fmt.Println("Welcome to YUKIMOCHI Activity-Relay [Server]", version) - fmt.Println(" - Configrations") + fmt.Println(" - Configurations") fmt.Println("RELAY DOMAIN : ", hostURL.Host) fmt.Println("REDIS URL : ", viper.GetString("redis_url")) fmt.Println("BIND ADDRESS : ", viper.GetString("relay_bind")) diff --git a/worker/worker.go b/worker/worker.go index d8baa8f..b9f9684 100644 --- a/worker/worker.go +++ b/worker/worker.go @@ -91,7 +91,7 @@ func initConfig() { log.DEBUG = newNullLogger fmt.Println("Welcome to YUKIMOCHI Activity-Relay [Worker]", version) - fmt.Println(" - Configrations") + fmt.Println(" - Configurations") fmt.Println("RELAY DOMAIN : ", hostURL.Host) fmt.Println("REDIS URL : ", viper.GetString("redis_url")) }