I have this code in Go:
func Provision(env string) error {
primaryPath, err := FindPrimaryRegionForEnv(env)
if err != nil {
return err
}
region := extractRegionFromEnvPath(env, primaryPath)
if err = ProvisionTableInDynamoDB(env, region); err != nil {
return err
}
return nil
}
Which Goland colors like this:
When I change if err = ... to if err := ... then the color of err changes:
What does the greenish err mean?

