Created
January 17, 2021 00:56
-
-
Save takakd/28d69930a1f6008fd651c6ccea2760c9 to your computer and use it in GitHub Desktop.
My Golang note.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Returning value | |
# github.com/aws/aws-sdk-go/service/translate/api.go | |
# line. 4560 | |
func newErrorUnsupportedLanguagePairException(v protocol.ResponseMetadata) error { | |
return &UnsupportedLanguagePairException{ | |
RespMetadata: v, | |
} | |
} | |
# Redundancy | |
func f() *A { | |
a := &A{} | |
return a | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment