diff options
author | Justin Clark-Casey (justincc) | 2013-07-03 00:27:22 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-07-03 00:27:22 +0100 |
commit | d01b8e163d14ee76c291565b5630d5049cde9b95 (patch) | |
tree | 1e32f388fdeaa1811ca6121a3ca62fc04b38b914 | |
parent | Fix SQL statement (diff) | |
download | opensim-SC-d01b8e163d14ee76c291565b5630d5049cde9b95.zip opensim-SC-d01b8e163d14ee76c291565b5630d5049cde9b95.tar.gz opensim-SC-d01b8e163d14ee76c291565b5630d5049cde9b95.tar.bz2 opensim-SC-d01b8e163d14ee76c291565b5630d5049cde9b95.tar.xz |
minor: Correct typo of "Descrition" to "Description" in "show object *" console commands
Thanks to Ai Austin for pointing this out.
-rw-r--r-- | OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs b/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs index e434b2e..0e79733 100644 --- a/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs +++ b/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs | |||
@@ -546,7 +546,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands | |||
546 | { | 546 | { |
547 | ConsoleDisplayList cdl = new ConsoleDisplayList(); | 547 | ConsoleDisplayList cdl = new ConsoleDisplayList(); |
548 | cdl.AddRow("Name", so.Name); | 548 | cdl.AddRow("Name", so.Name); |
549 | cdl.AddRow("Descrition", so.Description); | 549 | cdl.AddRow("Description", so.Description); |
550 | cdl.AddRow("Local ID", so.LocalId); | 550 | cdl.AddRow("Local ID", so.LocalId); |
551 | cdl.AddRow("UUID", so.UUID); | 551 | cdl.AddRow("UUID", so.UUID); |
552 | cdl.AddRow("Location", string.Format("{0} @ {1}", so.AbsolutePosition, so.Scene.Name)); | 552 | cdl.AddRow("Location", string.Format("{0} @ {1}", so.AbsolutePosition, so.Scene.Name)); |