diff options
author | 2021-09-09 15:38:32 +0100 | |
---|---|---|
committer | 2021-09-16 09:06:50 +0100 | |
commit | 9428970dac452a1047365b5b7963d284b0e3c876 (patch) | |
tree | a22546b07f9cca8580ef7f65fe525c2842ae0228 /sdk/update.go | |
parent | 05732954c627e896527eb2fff2f084a1dd8c31e1 (diff) |
Improve the documentation in the android/sdk.go file
Makes it adhere to the go standard practice of prefixing documentation
comments with the name of the type/func/method.
Bug: 195754365
Test: m nothing
Change-Id: Idf3fe827edc9b6d67d12a99a4b27539ac938ea95
Diffstat (limited to 'sdk/update.go')
-rw-r--r-- | sdk/update.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sdk/update.go b/sdk/update.go index c1a94b6dd..89a5c9269 100644 --- a/sdk/update.go +++ b/sdk/update.go @@ -765,6 +765,8 @@ type propertyTag struct { name string } +var _ android.BpPropertyTag = propertyTag{} + // A BpPropertyTag to add to a property that contains references to other sdk members. // // This will cause the references to be rewritten to a versioned reference in the version |