mirror of
https://github.com/containers/podman.git
synced 2025-11-03 07:47:19 +08:00
Spelling
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
@ -75,7 +75,7 @@ func GetEvents(w http.ResponseWriter, r *http.Request) {
|
||||
)
|
||||
|
||||
// NOTE: the "filters" parameter is extracted separately for backwards
|
||||
// compat via `fitlerFromRequest()`.
|
||||
// compat via `filterFromRequest()`.
|
||||
query := struct {
|
||||
Since string `schema:"since"`
|
||||
Until string `schema:"until"`
|
||||
|
||||
@ -48,7 +48,7 @@ func GetInfo(w http.ResponseWriter, r *http.Request) {
|
||||
stateInfo := getContainersState(runtime)
|
||||
sysInfo := sysinfo.New(true)
|
||||
|
||||
// FIXME: Need to expose if runtime supports Checkpoint'ing
|
||||
// FIXME: Need to expose if runtime supports Checkpointing
|
||||
// liveRestoreEnabled := criu.CheckForCriu() && configInfo.RuntimeSupportsCheckpoint()
|
||||
|
||||
info := &handlers.Info{Info: docker.Info{
|
||||
|
||||
@ -208,7 +208,7 @@ func RemoveVolume(w http.ResponseWriter, r *http.Request) {
|
||||
* using the volume at the same time".
|
||||
*
|
||||
* With this in mind, we only consider the `force` query parameter when we
|
||||
* hunt for specified volume by name, using it to seletively return a 204
|
||||
* hunt for specified volume by name, using it to selectively return a 204
|
||||
* or blow up depending on `force` being truthy or falsey/unset
|
||||
* respectively.
|
||||
*/
|
||||
@ -231,7 +231,7 @@ func RemoveVolume(w http.ResponseWriter, r *http.Request) {
|
||||
utils.VolumeNotFound(w, name, err)
|
||||
} else {
|
||||
// Volume does not exist and `force` is truthy - this emulates what
|
||||
// Docker would do when told to `force` removal of a nonextant
|
||||
// Docker would do when told to `force` removal of a nonexistent
|
||||
// volume
|
||||
utils.WriteResponse(w, http.StatusNoContent, nil)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user