Skip to content

Commit 22c29c1

Browse files
authored
Merge pull request opencontainers#556 from wking/remove-space-before-colon
Replace " : " with ": "
2 parents b2f69c6 + a2d07dc commit 22c29c1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

bundle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The definition of a bundle is only concerned with how a container, and its confi
1010
A Standard Container bundle contains all the information needed to load and run a container.
1111
This MUST include the following artifacts:
1212

13-
1. `config.json` : contains configuration data.
13+
1. `config.json`: contains configuration data.
1414
This REQUIRED file MUST reside in the root of the bundle directory and MUST be named `config.json`.
1515
See [`config.json`](config.md) for more details.
1616

config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ If a hook returns a non-zero exit code, then an error is logged and the remainin
289289
### Example
290290

291291
```json
292-
"hooks" : {
292+
"hooks": {
293293
"prestart": [
294294
{
295295
"path": "/usr/bin/fix-mounts",
@@ -334,7 +334,7 @@ Implementations that are reading/processing this configuration file MUST NOT gen
334334

335335
```json
336336
"annotations": {
337-
"com.example.gpu-cores" : "2"
337+
"com.example.gpu-cores": "2"
338338
}
339339
```
340340

runtime.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ This MUST be unique across all containers on this host.
1515
There is no requirement that it be unique across hosts.
1616
* **`status`**: (string) is the runtime state of the container.
1717
The value MAY be one of:
18-
* `created` : the container has been created but the user-specified code has not yet been executed
19-
* `running` : the container has been created and the user-specified code is running
20-
* `stopped` : the container has been created and the user-specified code has been executed but is no longer running
18+
* `created`: the container has been created but the user-specified code has not yet been executed
19+
* `running`: the container has been created and the user-specified code is running
20+
* `stopped`: the container has been created and the user-specified code has been executed but is no longer running
2121

2222
Additional values MAY be defined by the runtime, however, they MUST be used to represent new runtime states not defined above.
2323
* **`pid`**: (int) is the ID of the container process, as seen by the host.

0 commit comments

Comments
 (0)