From 08dc8574231585417f0557fe42f202428be6b755 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 30 Mar 2008 00:17:51 +0000 Subject: [PATCH] There is almost never a reason to give a specific argument for the link. The .xsl does a good job figuring out what you want. --- stepmania/Docs/LuaDocumentation.xml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/stepmania/Docs/LuaDocumentation.xml b/stepmania/Docs/LuaDocumentation.xml index 3a10276fbc..92ada3deea 100644 --- a/stepmania/Docs/LuaDocumentation.xml +++ b/stepmania/Docs/LuaDocumentation.xml @@ -9,15 +9,16 @@ you would want. To add a link to a function in the current class: - addx() + -> Actor.addx() To add a link to a function in another class: - ActorFrame:propagate() + -> ActorFrame.propagate() To add a link to a class: - ActorFrame + -> ActorFrame To add a link to a global function: - Basename() + -> Basename() To add a link to an Enum: - CoinMode --> + -> CoinMode + -->