From 4c05aef53ab95fa60d719968bd7eba3d8711c87c Mon Sep 17 00:00:00 2001 From: Mikel Olasagasti Uranga Date: Aug 30 2021 15:20:13 +0000 Subject: [golang] Fix small syntax typo --- diff --git a/guidelines/modules/ROOT/pages/Golang_advanced.adoc b/guidelines/modules/ROOT/pages/Golang_advanced.adoc index 30bd1d4..1052334 100644 --- a/guidelines/modules/ROOT/pages/Golang_advanced.adoc +++ b/guidelines/modules/ROOT/pages/Golang_advanced.adoc @@ -114,7 +114,7 @@ grep -nr "cloud.google.com/go/compute/metadata" $GOPATH/src/golang.org/x/oauth2 /home/user/go/src/golang.org/x/oauth2/google/google.go:15: "cloud.google.com/go/compute/metadata" ---- -we can see that it is used in the`+golang.org/x/oauth2/google+` subpackage, +We can see that it is used in the `+golang.org/x/oauth2/google+` subpackage, which is precisely the subpackage needed by `+cloud.google.com/go+`. It is thus not possible to split `+golang.org/x/oauth2/google+` into separate devel subpackage to resolve our cyclic dependency graph. @@ -133,7 +133,7 @@ grep -nr "golang.org/x/oauth2/google" $GOPATH/src/cloud.google.com/go /home/user/go/src/cloud.google.com/go/authexample_test.go:22: "golang.org/x/oauth2/google" ---- -we can see that it is not used in the `+cloud.google.com/go/compute/metadata+` +We can see that it is not used in the `+cloud.google.com/go/compute/metadata+` subpackage. As a result we can split `+cloud.google.com/go/compute/metadata+` into a separate devel subpackage to resolve our cyclic dependency graph.