Browse code

Merge pull request #51261 from thaJeztah/fix_api_godoc

api/types: fix godoc

Paweł Gronowski authored on 2025/10/22 20:35:09
Showing 2 changed files
... ...
@@ -1,19 +1,19 @@
1 1
 package types
2 2
 
3 3
 const (
4
-	// MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams
4
+	// MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams.
5 5
 	MediaTypeRawStream = "application/vnd.docker.raw-stream"
6 6
 
7
-	// MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams
7
+	// MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams.
8 8
 	MediaTypeMultiplexedStream = "application/vnd.docker.multiplexed-stream"
9 9
 
10
-	// MediaTypeJSON is the MIME-Type for JSON objects
10
+	// MediaTypeJSON is the MIME-Type for JSON objects.
11 11
 	MediaTypeJSON = "application/json"
12 12
 
13
-	// MediaTypeNDJson is the MIME-Type for Newline Delimited JSON objects streams
13
+	// MediaTypeNDJSON is the MIME-Type for Newline Delimited JSON objects streams.
14 14
 	MediaTypeNDJSON = "application/x-ndjson"
15 15
 
16
-	// MediaTypeJsonSequence is the MIME-Type for JSON Text Sequences (RFC7464)
16
+	// MediaTypeJSONSequence is the MIME-Type for JSON Text Sequences (RFC7464).
17 17
 	MediaTypeJSONSequence = "application/json-seq"
18 18
 )
19 19
 
... ...
@@ -1,19 +1,19 @@
1 1
 package types
2 2
 
3 3
 const (
4
-	// MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams
4
+	// MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams.
5 5
 	MediaTypeRawStream = "application/vnd.docker.raw-stream"
6 6
 
7
-	// MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams
7
+	// MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams.
8 8
 	MediaTypeMultiplexedStream = "application/vnd.docker.multiplexed-stream"
9 9
 
10
-	// MediaTypeJSON is the MIME-Type for JSON objects
10
+	// MediaTypeJSON is the MIME-Type for JSON objects.
11 11
 	MediaTypeJSON = "application/json"
12 12
 
13
-	// MediaTypeNDJson is the MIME-Type for Newline Delimited JSON objects streams
13
+	// MediaTypeNDJSON is the MIME-Type for Newline Delimited JSON objects streams.
14 14
 	MediaTypeNDJSON = "application/x-ndjson"
15 15
 
16
-	// MediaTypeJsonSequence is the MIME-Type for JSON Text Sequences (RFC7464)
16
+	// MediaTypeJSONSequence is the MIME-Type for JSON Text Sequences (RFC7464).
17 17
 	MediaTypeJSONSequence = "application/json-seq"
18 18
 )
19 19