aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs
index 3636544..20d8e54 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/IObject.cs
@@ -1,4 +1,4 @@
1/* 1/*
2 * Copyright (c) Contributors, http://opensimulator.org/ 2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders. 3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 * 4 *
@@ -44,13 +44,13 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
44 /// <example> 44 /// <example>
45 /// IObject deleteMe = World.Objects[0]; 45 /// IObject deleteMe = World.Objects[0];
46 /// 46 ///
47 /// if(deleteMe.Exists) { 47 /// if (deleteMe.Exists) {
48 /// deleteMe.Say("Hello, I still exist!"); 48 /// deleteMe.Say("Hello, I still exist!");
49 /// } 49 /// }
50 /// 50 ///
51 /// World.Objects.Remove(deleteMe); 51 /// World.Objects.Remove(deleteMe);
52 /// 52 ///
53 /// if(!deleteMe.Exists) { 53 /// if (!deleteMe.Exists) {
54 /// Host.Console.Info("I was deleted"); 54 /// Host.Console.Info("I was deleted");
55 /// } 55 /// }
56 /// </example> 56 /// </example>