Skip to content

Commit b92ce90

Browse files
committed
Minor fixes
1 parent 0c0375c commit b92ce90

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

content/en/docs/intro-lisp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ defun fib(n):
230230
elif n == 0 or n == 1:
231231
1
232232
else:
233-
fib(n-1) + fib(n-2)
233+
fib(n - 1) + fib(n - 2)
234234
end
235235
end
236236
```

hugo.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ imaging:
4646
languages:
4747
en:
4848
languageName: English
49-
title: The Moonli Programming Language
49+
title: Moonli
5050
params:
5151
description: Homepage of the Moonli programming language
5252
# cSpell:disable
@@ -125,7 +125,7 @@ params:
125125
offlineSearch: false
126126

127127
# Enable syntax highlighting and copy buttons on code blocks with Prism
128-
prism_syntax_highlighting: false
128+
prism_syntax_highlighting: true
129129

130130
copyright:
131131
authors: Docsy Authors | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) |

0 commit comments

Comments
 (0)