aboutsummaryrefslogtreecommitdiff
path: root/internal/fetch/unit.go
diff options
context:
space:
mode:
authorJonathan Amsterdam <jba@google.com>2021-01-29 18:44:53 -0500
committerJonathan Amsterdam <jba@google.com>2021-02-02 19:36:47 +0000
commit814534999dcbf4fa3d7b358a6de57bf2d44fc450 (patch)
tree712ffee18ee7ac7953160860419735cfe0402eec /internal/fetch/unit.go
parent1fe92ed1d8906c5c7253e7f1f03cb008e08a640c (diff)
downloadgo-x-pkgsite-814534999dcbf4fa3d7b358a6de57bf2d44fc450.tar.xz
many: allow for multiple documentations for a Unit
Change internal.Unit.Documentation from a single internal.Documentation to a slice, so that a Unit can have doc for multiple build contexts. However, don't use this ability yet: fetch takes only the first build context it finds, postgres inserts only the first, frontend renders only the first, etc. For golang/go#37232 Change-Id: I17fd1ff2378e0862c029c8077057c207001f6136 Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/288217 Trust: Jonathan Amsterdam <jba@google.com> Run-TryBot: Jonathan Amsterdam <jba@google.com> TryBot-Result: kokoro <noreply+kokoro@google.com> Reviewed-by: Julie Qiu <julie@golang.org> Reviewed-by: Jamal Carvalho <jamal@golang.org>
Diffstat (limited to 'internal/fetch/unit.go')
-rw-r--r--internal/fetch/unit.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fetch/unit.go b/internal/fetch/unit.go
index 7bce5bb0..4e8d5b3b 100644
--- a/internal/fetch/unit.go
+++ b/internal/fetch/unit.go
@@ -62,7 +62,7 @@ func moduleUnits(modulePath, version string,
dir.Name = pkg.name
dir.Imports = pkg.imports
// TODO(golang/go#37232): keep all docs
- dir.Documentation = pkg.docs[0]
+ dir.Documentation = pkg.docs[:1]
}
units = append(units, dir)
}