Skip to content

Commit 02580a4

Browse files
committed
Fix minor typos
1 parent 1dc1643 commit 02580a4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/retro.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ function retroSection(section) {
4646
var exercise = section2obj(section);
4747

4848
// Convert to new format
49-
var blockCode = newNode(exercise);
50-
49+
var blockCode = exerciseBlock(exercise);
5150

5251
return [
5352
// Use a html node so it's
@@ -78,7 +77,7 @@ function retro(content) {
7877
});
7978

8079
// Bring sections back together into a list of lexed nodes
81-
var newLexed = sections.join(newSections)
80+
var newLexed = sections.join(newSections);
8281

8382
// Render back to markdown
8483
return render(newLexed);

0 commit comments

Comments
 (0)