Rename tutorial sections

This commit is contained in:
aaron 2024-11-12 15:15:16 +00:00
parent bacb4fa0f0
commit a1552402cb
3 changed files with 4 additions and 4 deletions

View file

@ -56,16 +56,16 @@ export default withMermaid({
{ text: "Implicit Effects", link: "/tut/crash-course/8-implicit-effect" },
{ text: "Derived Sources", link: "/tut/crash-course/9-derived-source" },
{ text: "Cleanup", link: "/tut/crash-course/10-cleanup" },
{ text: "Dynamic Scoping", link: "/tut/crash-course/11-dynamic-scope" },
{ text: "Dynamic Scopes", link: "/tut/crash-course/11-dynamic-scopes" },
{ text: "Actions", link: "/tut/crash-course/12-actions" },
{ text: "Strict Mode", link: "/tut/crash-course/13-strict-mode" },
{ text: "Concepts Summary", link: "/tut/crash-course/14-concepts" }
]
},
{
text: "Dynamic Scoping",
text: "Advanced",
items: [
{ text: "Custom Scopes", link: "/tut/advanced/custom"}
{ text: "Dynamic Scopes", link: "/tut/advanced/dynamic-scopes"}
]
},
{

View file

@ -1,4 +1,4 @@
# Dynamic Scoping
# Dynamic Scopes
Eventually you may need a way to dynamically create and destroy UI elements
resulting from source updates. Vide provides functions to help you do this,