Skip to content

Commit 70c2aa6

Browse files
Fix lua api link
1 parent 0824299 commit 70c2aa6

8 files changed

+8
-8
lines changed

web/src/pages/Client_Scripting_Events.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const theseEvents = eventsByTypeByCategory.client;
1212
title: 'Client events',
1313
tableOfContents: false,
1414
}}>
15-
<p>This page lists all <strong>client-side</strong> events available in the <a href="/lua-api">Lua API</a> organized by category.</p>
15+
<p>This page lists all <strong>client-side</strong> events available in the <a href="/Lua_API">Lua API</a> organized by category.</p>
1616

1717
{Object.entries(theseEvents).map(([category, events]) => (
1818
<section>

web/src/pages/Client_Scripting_Functions.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const theseFunctions = functionsByTypeByCategory.client;
1212
title: 'Client functions',
1313
tableOfContents: false,
1414
}}>
15-
<p>This page lists all <strong>client-side</strong> functions available in the <a href="/lua-api">Lua API</a> organized by category.</p>
15+
<p>This page lists all <strong>client-side</strong> functions available in the <a href="/Lua_API">Lua API</a> organized by category.</p>
1616

1717
{Object.entries(theseFunctions).map(([category, funcs]) => (
1818
<section>

web/src/pages/OOP_Classes.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const classesByCategory = getOOPClassesByCategory();
1010
title: 'OOP Classes',
1111
tableOfContents: false,
1212
}}>
13-
<p>This page lists all <strong><a href="/OOP">OOP</a> Classes</strong> available in the <a href="/lua-api">Lua API</a> organized by category.</p>
13+
<p>This page lists all <strong><a href="/OOP">OOP</a> Classes</strong> available in the <a href="/Lua_API">Lua API</a> organized by category.</p>
1414

1515

1616
{Object.entries(classesByCategory).map(([category, oopClasses]) => (

web/src/pages/Scripting_Events.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const eventsByCategory = getEventsByCategory();
1010
title: 'All events',
1111
tableOfContents: false,
1212
}}>
13-
<p>This page lists all <strong>client-side</strong> and <strong>server-side</strong> events available in the <a href="/lua-api">Lua API</a> organized by category.</p>
13+
<p>This page lists all <strong>client-side</strong> and <strong>server-side</strong> events available in the <a href="/Lua_API">Lua API</a> organized by category.</p>
1414

1515

1616
{Object.entries(eventsByCategory).map(([category, events]) => (

web/src/pages/Scripting_Functions.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const functionsByCategory = getFunctionsByCategory();
1111
title: 'All functions',
1212
tableOfContents: false,
1313
}}>
14-
<p>This page lists all <strong>client-side</strong>, <strong>server-side</strong> and <strong>shared</strong> functions available in the <a href="/lua-api">Lua API</a> organized by category.</p>
14+
<p>This page lists all <strong>client-side</strong>, <strong>server-side</strong> and <strong>shared</strong> functions available in the <a href="/Lua_API">Lua API</a> organized by category.</p>
1515

1616
{Object.entries(functionsByCategory).map(([category, funcs]) => (
1717
<section>

web/src/pages/Server_Scripting_Events.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const theseEvents = eventsByTypeByCategory.server;
1212
title: 'Server events',
1313
tableOfContents: false,
1414
}}>
15-
<p>This page lists all <strong>server-side</strong> events available in the <a href="/lua-api">Lua API</a> organized by category.</p>
15+
<p>This page lists all <strong>server-side</strong> events available in the <a href="/Lua_API">Lua API</a> organized by category.</p>
1616

1717
{Object.entries(theseEvents).map(([category, events]) => (
1818
<section>

web/src/pages/Server_Scripting_Functions.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const theseFunctions = functionsByTypeByCategory.server;
1212
title: 'Server functions',
1313
tableOfContents: false,
1414
}}>
15-
<p>This page lists all <strong>server-side</strong> functions available in the <a href="/lua-api">Lua API</a> organized by category.</p>
15+
<p>This page lists all <strong>server-side</strong> functions available in the <a href="/Lua_API">Lua API</a> organized by category.</p>
1616

1717
{Object.entries(theseFunctions).map(([category, funcs]) => (
1818
<section>

web/src/pages/Shared_Scripting_Functions.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const theseFunctions = functionsByTypeByCategory.shared;
1212
title: 'Shared functions',
1313
tableOfContents: false,
1414
}}>
15-
<p>This page lists all <strong>shared</strong> functions available in the <a href="/lua-api">Lua API</a> organized by category.</p>
15+
<p>This page lists all <strong>shared</strong> functions available in the <a href="/Lua_API">Lua API</a> organized by category.</p>
1616

1717
{Object.entries(theseFunctions).map(([category, funcs]) => (
1818
<section>

0 commit comments

Comments
 (0)