Browse Source

Docstrings

Jakob Borg 11 years ago
parent
commit
c860ad23a0
3 changed files with 4 additions and 0 deletions
  1. 1 0
      osutil/osutil.go
  2. 1 0
      upgrade/upgrade_common.go
  3. 2 0
      versioner/versioner.go

+ 1 - 0
osutil/osutil.go

@@ -2,6 +2,7 @@
 // All rights reserved. Use of this source code is governed by an MIT-style
 // license that can be found in the LICENSE file.
 
+// Package osutil implements utilities for native OS support.
 package osutil
 
 import (

+ 1 - 0
upgrade/upgrade_common.go

@@ -2,6 +2,7 @@
 // All rights reserved. Use of this source code is governed by an MIT-style
 // license that can be found in the LICENSE file.
 
+// Package upgrade downloads and compares releases, and upgrades the running binary.
 package upgrade
 
 import (

+ 2 - 0
versioner/versioner.go

@@ -2,6 +2,8 @@
 // All rights reserved. Use of this source code is governed by an MIT-style
 // license that can be found in the LICENSE file.
 
+// Package versioner implements common interfaces for file versioning and a
+// simple default versioning scheme.
 package versioner
 
 type Versioner interface {