From a83c0965b26947c76ce29c30f3dd500024ec22d2 Mon Sep 17 00:00:00 2001 From: Lei Jitang Date: Fri, 28 Oct 2016 03:41:44 -0400 Subject: [PATCH] typo: fix missing `)` Signed-off-by: Lei Jitang --- runtime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.md b/runtime.md index 2efc5fb4..5b4b1412 100644 --- a/runtime.md +++ b/runtime.md @@ -49,7 +49,7 @@ The lifecycle describes the timeline of events that happen from when a container 1. OCI compliant runtime's [`create`](runtime.md#create) command is invoked with a reference to the location of the bundle and a unique identifier. 2. The container's runtime environment MUST be created according to the configuration in [`config.json`](config.md). If the runtime is unable to create the environment specified in the [`config.json`](config.md), it MUST generate an error. - While the resources requested in the [`config.json`](config.md) MUST be created, the user-specified code (from [`process`](config.md#process-configuration) MUST NOT be run at this time. + While the resources requested in the [`config.json`](config.md) MUST be created, the user-specified code (from [`process`](config.md#process-configuration)) MUST NOT be run at this time. Any updates to [`config.json`](config.md) after this step MUST NOT affect the container. 3. Once the container is created additional actions MAY be performed based on the features the runtime chooses to support. However, some actions might only be available based on the current state of the container (e.g. only available while it is started).