Skip to content

Commit d7a9bdb

Browse files
committed
Restore a numbered list.
This got incorrectly converted from a numbered list to a bulleted list during the RST export to markdown.
1 parent 46dbe1e commit d7a9bdb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sources/TSPL/TSPL.docc/LanguageGuide/Generics.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -320,11 +320,11 @@ The illustration below shows the push and pop behavior for a stack:
320320

321321
![](stackPushPop)
322322

323-
- There are currently three values on the stack.
324-
- A fourth value is pushed onto the top of the stack.
325-
- The stack now holds four values, with the most recent one at the top.
326-
- The top item in the stack is popped.
327-
- After popping a value, the stack once again holds three values.
323+
1. There are currently three values on the stack.
324+
2. A fourth value is pushed onto the top of the stack.
325+
3. The stack now holds four values, with the most recent one at the top.
326+
4. The top item in the stack is popped.
327+
5. After popping a value, the stack once again holds three values.
328328

329329
Here's how to write a nongeneric version of a stack,
330330
in this case for a stack of `Int` values:

0 commit comments

Comments
 (0)