From 6360107d53c8d018f753877be995372ec03a2a99 Mon Sep 17 00:00:00 2001 From: vyzo Date: Mon, 16 May 2022 21:48:12 +0300 Subject: [PATCH] godocs for bundle struct --- build/bundle.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/bundle.go b/build/bundle.go index 3afe41daa..4564e21e0 100644 --- a/build/bundle.go +++ b/build/bundle.go @@ -16,13 +16,13 @@ type BundleSpec struct { } type Bundle struct { - // actors version in this bundle + // Version is the actors version in this bundle Version actors.Version - // release id + // Release is the release id Release string - // bundle path: optional, uses the appropriate release bundle if unset + // Path is the (optional) bundle path; uses the appropriate release bundle if unset Path string - // development version; when set, in conjunction with path, it will always - // load the bundle to the blockstore + // Devlopment indicates whether this is a development version; when set, in conjunction with path, + // it will always load the bundle to the blockstore Development bool }