mirror of
https://github.com/containers/podman.git
synced 2025-06-19 16:33:24 +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)
|
||||
}
|
||||
|
@ -7,7 +7,7 @@ import (
|
||||
"github.com/gorilla/mux"
|
||||
)
|
||||
|
||||
func (s *APIServer) registerAchiveHandlers(r *mux.Router) error {
|
||||
func (s *APIServer) registerArchiveHandlers(r *mux.Router) error {
|
||||
// swagger:operation PUT /containers/{name}/archive compat putArchive
|
||||
// ---
|
||||
// summary: Put files into a container
|
||||
|
@ -666,7 +666,7 @@ func (s *APIServer) registerImagesHandlers(r *mux.Router) error {
|
||||
// - in: query
|
||||
// name: destination
|
||||
// type: string
|
||||
// description: Allows for pushing the image to a different destintation than the image refers to.
|
||||
// description: Allows for pushing the image to a different destination than the image refers to.
|
||||
// - in: query
|
||||
// name: tlsVerify
|
||||
// description: Require TLS verification.
|
||||
|
@ -108,7 +108,7 @@ func newServer(runtime *libpod.Runtime, duration time.Duration, listener *net.Li
|
||||
|
||||
for _, fn := range []func(*mux.Router) error{
|
||||
server.registerAuthHandlers,
|
||||
server.registerAchiveHandlers,
|
||||
server.registerArchiveHandlers,
|
||||
server.registerContainersHandlers,
|
||||
server.registerDistributionHandlers,
|
||||
server.registerEventsHandlers,
|
||||
|
Reference in New Issue
Block a user