diff --git a/website/src/config.ts b/website/src/config.ts
index e32e243d..d65c54fc 100644
--- a/website/src/config.ts
+++ b/website/src/config.ts
@@ -87,7 +87,7 @@ export const SIDEBAR: Sidebar = {
{ text: 'Signals', link: 'learn/signals' },
{ text: 'Conditional Modifiers', link: 'learn/conditional-modifiers' },
{ text: 'Accumulation', link: 'learn/accumulation' },
- { text: 'Tonal Modifiers', link: 'learn/tonal' },
+ { text: 'Tonal Functions', link: 'learn/tonal' },
],
Development: [
{ text: 'REPL', link: 'technical-manual/repl' },
diff --git a/website/src/pages/learn/accumulation.mdx b/website/src/pages/learn/accumulation.mdx
index 4940d791..9bd39278 100644
--- a/website/src/pages/learn/accumulation.mdx
+++ b/website/src/pages/learn/accumulation.mdx
@@ -32,4 +32,4 @@ import { JsDoc } from '../../docs/JsDoc';
-There are also [Tonal Modifiers](/learn/tonal).
+There are also [Tonal Functions](/learn/tonal).
diff --git a/website/src/pages/learn/tonal.mdx b/website/src/pages/learn/tonal.mdx
index 33121ab7..658d6ad4 100644
--- a/website/src/pages/learn/tonal.mdx
+++ b/website/src/pages/learn/tonal.mdx
@@ -1,14 +1,29 @@
---
-title: Tonal API
+title: Tonal Functions
layout: ../../layouts/MainLayout.astro
---
import { MiniRepl } from '../../docs/MiniRepl';
import { JsDoc } from '../../docs/JsDoc';
-# Tonal API
+# Tonal Functions
-The Tonal API, uses [tonaljs](https://github.com/tonaljs/tonal) to provide helpers for musical operations.
+These functions use [tonaljs](https://github.com/tonaljs/tonal) to provide helpers for musical operations.
+
+### scale(name)
+
+Turns numbers into notes in the scale (zero indexed). Also sets scale for other scale operations, like scaleTranspose.
+
+
+
+Note that the scale root is octaved here. You can also omit the octave, then index zero will default to octave 3.
+
+All the available scale names can be found [here](https://github.com/tonaljs/tonal/blob/main/packages/scale-type/data.ts).
### transpose(semitones)
@@ -22,21 +37,6 @@ Instead of numbers, scientific interval notation can be used as well:
".slow(2)).note()`} />
-### scale(name)
-
-Turns numbers into notes in the scale (zero indexed). Also sets scale for other scale operations, like scaleTranspose.
-
-
-
-Note that the scale root is octaved here. You can also omit the octave, then index zero will default to octave 3.
-
-All the available scale names can be found [here](https://github.com/tonaljs/tonal/blob/main/packages/scale-type/data.ts).
-
### scaleTranspose(steps)
Transposes notes inside the scale by the number of steps: