fixed missing brace in meta status document

This commit is contained in:
Jack Hodgkinson 2022-01-28 13:38:20 +00:00
parent 05915f6bd3
commit 043bf5584c

View file

@ -1,6 +1,6 @@
# Spec Status Format # Spec Status Format
This document specifies a format used to denote the 'status' of a document. This document specifies a format used to denote the 'status' of a spec document.
## Overview ## Overview
@ -17,6 +17,26 @@ This format should be used at the start of any documentation that may be conside
In Markdown, the format is as follows, with {substitutions} in curly braces. In Markdown, the format is as follows, with {substitutions} in curly braces.
| Spec Status | Impl Status | Last Revision |
|-------------|-------------|---------------|
| {status} | {status} | {version}, {date} |
--------------------
**Spec Ownership:** [{owner name}]
**Authors**: [{author name}], [{owner name}]
**Impl Owner:** [{impl owner name}]
**Current Status**:
{Short description of status}
[{owner name}]: {github url}
[{author name}]: {github url}
[{impl owner name}]: {github url}
```markdown ```markdown
| Spec Status | Impl Status | Last Revision | | Spec Status | Impl Status | Last Revision |
|-------------|-------------|---------------| |-------------|-------------|---------------|
@ -24,19 +44,19 @@ In Markdown, the format is as follows, with {substitutions} in curly braces.
-------------------- --------------------
**Spec Ownership:** [@{owner name}] **Spec Ownership:** [{owner name}]
**Authors**: [@{author name}], [@{owner name}] **Authors**: [{author name}], [{owner name}]
**Impl Owner:** [@{impl owner name}] **Impl Owner:** [{impl owner name}]
**Current Status**: **Current Status**:
{Short description of status} {Short description of status}
[@{owner name}]: {github url} [{owner name}]: {github url}
[@{author name}]: {github url} [{author name}]: {github url}
[@{impl owner name]: {github url} [{impl owner name}]: {github url}
-------------------- --------------------
``` ```