summaryrefslogtreecommitdiff
path: root/libpod/options.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-04-30 12:12:09 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-05-03 12:23:12 +0000
commit16c997de624be049dda5d2182ec70d979194b002 (patch)
tree41b1e52fb363c4b5235469eb5d0660e2e78c2626 /libpod/options.go
parent1ece5d3db710abb36b36e081d55ffcf7441bc211 (diff)
downloadpodman-16c997de624be049dda5d2182ec70d979194b002.tar.gz
podman-16c997de624be049dda5d2182ec70d979194b002.tar.bz2
podman-16c997de624be049dda5d2182ec70d979194b002.zip
Further fix Godoc comments in options.go
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #700 Approved by: rhatdan
Diffstat (limited to 'libpod/options.go')
-rw-r--r--libpod/options.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpod/options.go b/libpod/options.go
index ed0b3e9d4..968507906 100644
--- a/libpod/options.go
+++ b/libpod/options.go
@@ -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 {