From 0022f48d42362afc119a339ef1819ee3e5e7a00a Mon Sep 17 00:00:00 2001
From: SignpostMarv
Date: Mon, 29 Oct 2012 11:45:47 +0000
Subject: Improving documentation of AttachToAvatar and GetLine methods in
LSL_Api.cs based on doxygen error output
---
.../Shared/Api/Implementation/LSL_Api.cs | 23 ++++++++++++++--------
1 file changed, 15 insertions(+), 8 deletions(-)
(limited to 'OpenSim/Region/ScriptEngine')
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index d69551f..75749a9 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -3007,7 +3007,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
///
/// Attach the object containing this script to the avatar that owns it.
///
- /// The attachment point (e.g. ATTACH_CHEST)
+ ///
+ /// The attachment point (e.g. ATTACH_CHEST)
+ ///
/// true if the attach suceeded, false if it did not
public bool AttachToAvatar(int attachmentPoint)
{
@@ -5418,9 +5420,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
}
///
- /// Insert the list identified by into the
- /// list designated by such that the first
- /// new element has the index specified by
+ /// Insert the list identified by into the
+ /// list designated by such that the first
+ /// new element has the index specified by
///
public LSL_List llListInsertList(LSL_List dest, LSL_List src, int index)
@@ -11520,7 +11522,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
/// Get a notecard line.
///
///
- /// Lines start at index 0
+ /// Lines start at index 0
///
public static string GetLine(UUID assetID, int lineNumber)
{
@@ -11549,9 +11551,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
/// Get a notecard line.
///
///
- /// Lines start at index 0
- /// Maximum length of the returned line. Longer lines will be truncated
- ///
+ /// Lines start at index 0
+ ///
+ /// Maximum length of the returned line.
+ ///
+ ///
+ /// If the line length is longer than ,
+ /// the return string will be truncated.
+ ///
public static string GetLine(UUID assetID, int lineNumber, int maxLength)
{
string line = GetLine(assetID, lineNumber);
--
cgit v1.1