diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 366291bb19..1a7cd3fe24 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -3038,7 +3038,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)
{
@@ -5392,9 +5394,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)
@@ -11387,7 +11389,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)
{
@@ -11416,9 +11418,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);