From f09ca78b45ade4dd4da1d89281758010ce3a1d8e Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 22 Oct 2025 12:09:04 +0200 Subject: [PATCH] api/types: fix godoc Signed-off-by: Sebastiaan van Stijn --- api/types/types.go | 10 +++++----- vendor/github.com/moby/moby/api/types/types.go | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/api/types/types.go b/api/types/types.go index 32fbcc639f..79951ca1a1 100644 --- a/api/types/types.go +++ b/api/types/types.go @@ -6,19 +6,19 @@ import ( ) const ( - // MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams + // MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams. MediaTypeRawStream = "application/vnd.docker.raw-stream" - // MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams + // MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams. MediaTypeMultiplexedStream = "application/vnd.docker.multiplexed-stream" - // MediaTypeJSON is the MIME-Type for JSON objects + // MediaTypeJSON is the MIME-Type for JSON objects. MediaTypeJSON = "application/json" - // MediaTypeNDJson is the MIME-Type for Newline Delimited JSON objects streams + // MediaTypeNDJSON is the MIME-Type for Newline Delimited JSON objects streams. MediaTypeNDJSON = "application/x-ndjson" - // MediaTypeJsonSequence is the MIME-Type for JSON Text Sequences (RFC7464) + // MediaTypeJSONSequence is the MIME-Type for JSON Text Sequences (RFC7464). MediaTypeJSONSequence = "application/json-seq" ) diff --git a/vendor/github.com/moby/moby/api/types/types.go b/vendor/github.com/moby/moby/api/types/types.go index 32fbcc639f..79951ca1a1 100644 --- a/vendor/github.com/moby/moby/api/types/types.go +++ b/vendor/github.com/moby/moby/api/types/types.go @@ -6,19 +6,19 @@ import ( ) const ( - // MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams + // MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams. MediaTypeRawStream = "application/vnd.docker.raw-stream" - // MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams + // MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams. MediaTypeMultiplexedStream = "application/vnd.docker.multiplexed-stream" - // MediaTypeJSON is the MIME-Type for JSON objects + // MediaTypeJSON is the MIME-Type for JSON objects. MediaTypeJSON = "application/json" - // MediaTypeNDJson is the MIME-Type for Newline Delimited JSON objects streams + // MediaTypeNDJSON is the MIME-Type for Newline Delimited JSON objects streams. MediaTypeNDJSON = "application/x-ndjson" - // MediaTypeJsonSequence is the MIME-Type for JSON Text Sequences (RFC7464) + // MediaTypeJSONSequence is the MIME-Type for JSON Text Sequences (RFC7464). MediaTypeJSONSequence = "application/json-seq" )