runtime.md: Fix sub-bullet indentation

The indentation of the sub bullets for the status entries under State were not
indented by the 4 spaces required by markdown. They did not render well in
the pdf, at least with my native build with pandoc v1.13.2. Change them to 4
spaces, which now renders well.

Signed-off-by: Graham Whaley <graham.whaley@linux.intel.com>
This commit is contained in:
Graham Whaley 2016-06-08 19:05:08 +01:00
parent 79b26a19e2
commit 7795661d84
1 changed files with 3 additions and 3 deletions

View File

@ -15,9 +15,9 @@ This MUST be unique across all containers on this host.
There is no requirement that it be unique across hosts. There is no requirement that it be unique across hosts.
* **`status`**: (string) is the runtime state of the container. * **`status`**: (string) is the runtime state of the container.
The value MAY be one of: The value MAY be one of:
* `created` : the container has been created but the user-specified code has not yet been executed * `created` : the container has been created but the user-specified code has not yet been executed
* `running` : the container has been created and the user-specified code is running * `running` : the container has been created and the user-specified code is running
* `stopped` : the container has been created and the user-specified code has been executed but is no longer running * `stopped` : the container has been created and the user-specified code has been executed but is no longer running
Additional values MAY be defined by the runtime, however, they MUST be used to represent new runtime states not defined above. Additional values MAY be defined by the runtime, however, they MUST be used to represent new runtime states not defined above.
* **`pid`**: (int) is the ID of the main process within the container, as seen by the host. * **`pid`**: (int) is the ID of the main process within the container, as seen by the host.