From 406a3d3be4dbf55c0061ed7304282955e066e07c Mon Sep 17 00:00:00 2001 From: Marcos Lilljedahl Date: Tue, 20 Oct 2020 00:51:50 -0300 Subject: [PATCH] Fix typo --- pwd/types/playground.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwd/types/playground.go b/pwd/types/playground.go index b448d39..73f8022 100644 --- a/pwd/types/playground.go +++ b/pwd/types/playground.go @@ -85,9 +85,9 @@ type Playground struct { GithubClientID string `json:"github_client_id" bson:"github_client_id"` GithubClientSecret string `json:"github_client_secret" bson:"github_client_secret"` GoogleClientID string `json:"google_client_id" bson:"google_client_id"` - GoogleClientSecret string `json:"google_client_secert" bson:"google_client_secret"` + GoogleClientSecret string `json:"google_client_secret" bson:"google_client_secret"` DockerClientID string `json:"docker_client_id" bson:"docker_client_id"` - DockerClientSecret string `json:"google_client_secret" bson:"docker_client_secret"` + DockerClientSecret string `json:"docker_client_secret" bson:"docker_client_secret"` DockerHost string `json:"docker_host" bson:"docker_host"` MaxInstances int `json:"max_instances" bson:"max_instances"` }