Further fix Godoc comments in options.go

Signed-off-by: Matthew Heon <matthew.heon@gmail.com>

Closes: #700
Approved by: rhatdan
This commit is contained in:
Matthew Heon 2018-04-30 12:12:09 -04:00 committed by Atomic Bot
parent 1ece5d3db7
commit 16c997de62

View file

@ -18,7 +18,7 @@ var (
// Runtime Creation Options
// WithStorageConfig uses the given configuration to set up container storage
// WithStorageConfig uses the given configuration to set up container storage.
// If this is not specified, the system default configuration will be used
// instead.
func WithStorageConfig(config storage.StoreOptions) RuntimeOption {
@ -74,8 +74,8 @@ func WithSignaturePolicy(path string) RuntimeOption {
}
}
// WithStateType sets the backing state implementation for libpod
// Please note that information is not portable between backing states
// WithStateType sets the backing state implementation for libpod.
// Please note that information is not portable between backing states.
// As such, if this differs between two libpods running on the same system,
// they will not share containers, and unspecified behavior may occur.
func WithStateType(storeType RuntimeStateStore) RuntimeOption {