Skip to content

Commit

Permalink
Merge pull request #1303 from eriksjolund/fix_typos
Browse files Browse the repository at this point in the history
fix typos and spelling
  • Loading branch information
rhatdan committed Jul 27, 2022
2 parents 3696c4d + cffa197 commit 841da82
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/containers-storage-delete-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ containers-storage delete-image - Delete an image
Deletes an image if it is not currently being used by any containers. If the
image's top layer is not being used by any other images, it will be removed.
If that image's parent is then not being used by other images, it, too, will be
removed, and the this will be repeated for each parent's parent.
removed, and this will be repeated for each parent's parent.

## EXAMPLE
**containers-storage delete-image my-base-image**
Expand Down
2 changes: 1 addition & 1 deletion docs/containers-storage-get-container-dir.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## containers-storage-get-container-dir 1 "Sepember 2016"
## containers-storage-get-container-dir 1 "September 2016"

## NAME
containers-storage get-container-dir - Find lookaside directory for a container
Expand Down
2 changes: 1 addition & 1 deletion docs/containers-storage-get-container-run-dir.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## containers-storage-get-container-run-dir 1 "Sepember 2016"
## containers-storage-get-container-run-dir 1 "September 2016"

## NAME
containers-storage get-container-run-dir - Find runtime lookaside directory for a container
Expand Down
2 changes: 1 addition & 1 deletion docs/containers-storage-layer.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ containers-storage layer - Examine a single layer
**containers-storage** **layer** *layerNameOrID*

## DESCRIPTION
Retrieve information about an layer: its ID, any names it has, and the ID of
Retrieve information about a layer: its ID, any names it has, and the ID of
its parent, if it has one.

## EXAMPLE
Expand Down
4 changes: 2 additions & 2 deletions docs/containers-storage-list-layer-data.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
## containers-storage-list-layer-data 1 "December 2020"

## NAME
containers-storage list-layer-data - List lookaside data for an layer
containers-storage list-layer-data - List lookaside data for a layer

## SYNOPSIS
**containers-storage** **list-layer-data** *layerID*

## DESCRIPTION
List the pieces of named data which are associated with an layer.
List the pieces of named data which are associated with a layer.

## EXAMPLE
**containers-storage list-layer-data 2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824**
Expand Down
4 changes: 2 additions & 2 deletions docs/containers-storage.conf.5.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ containers/storage supports four keys

**remap-uids=**""
**remap-gids=**""
Remap-UIDs/GIDs is the mapping from UIDs/GIDs as they should appear inside of a container, to the UIDs/GIDs outside of the container, and the length of the range of UIDs/GIDs. Additional mapped sets can be listed and will be heeded by libraries, but there are limits to the number of mappings which the kernel will allow when you later attempt to run a container.
Remap-UIDs/GIDs is the mapping from UIDs/GIDs as they should appear inside of a container, to the UIDs/GIDs outside of the container, and the length of the range of UIDs/GIDs. Additional mapped sets can be listed and will be needed by libraries, but there are limits to the number of mappings which the kernel will allow when you later attempt to run a container.

Example
remap-uids = 0:1668442479:65536
Expand Down Expand Up @@ -244,7 +244,7 @@ Note: The force_mask Flag is an experimental feature, it could change in the
future. When "force_mask" is set the original permission mask is stored in the
"user.containers.override_stat" xattr and the "mount_program" option must be
specified. Mount programs like "/usr/bin/fuse-overlayfs" present the extended
attribute permissions to processes within containers rather then the
attribute permissions to processes within containers rather than the
"force_mask" permissions.

**mount_program**=""
Expand Down
6 changes: 3 additions & 3 deletions storage.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is is the configuration file for all tools
# This file is the configuration file for all tools
# that use the containers/storage library. The storage.conf file
# overrides all other storage.conf files. Container engines using the
# container/storage library do not inherit fields from other storage.conf
Expand Down Expand Up @@ -65,7 +65,7 @@ pull_options = {enable_partial_images = "false", use_hard_links = "false", ostre
# Remap-UIDs/GIDs is the mapping from UIDs/GIDs as they should appear inside of
# a container, to the UIDs/GIDs as they should appear outside of the container,
# and the length of the range of UIDs/GIDs. Additional mapped sets can be
# listed and will be heeded by libraries, but there are limits to the number of
# listed and will be needed by libraries, but there are limits to the number of
# mappings which the kernel will allow when you later attempt to run a
# container.
#
Expand Down Expand Up @@ -150,7 +150,7 @@ mountopt = "nodev"
# future. When "force_mask" is set the original permission mask is stored in
# the "user.containers.override_stat" xattr and the "mount_program" option must
# be specified. Mount programs like "/usr/bin/fuse-overlayfs" present the
# extended attribute permissions to processes within containers rather then the
# extended attribute permissions to processes within containers rather than the
# "force_mask" permissions.
#
# force_mask = ""
Expand Down
2 changes: 1 addition & 1 deletion store.go
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ type Store interface {
SetImageBigData(id, key string, data []byte, digestManifest func([]byte) (digest.Digest, error)) error

// ListLayerBigData retrieves a list of the (possibly large) chunks of
// named data associated with an layer.
// named data associated with a layer.
ListLayerBigData(id string) ([]string, error)

// LayerBigData retrieves a (possibly large) chunk of named data
Expand Down

0 comments on commit 841da82

Please sign in to comment.