minor: Correct typo of "Descrition" to "Description" in "show object *" console commands

Thanks to Ai Austin for pointing this out.
cpu-performance
Justin Clark-Casey (justincc) 2013-07-03 00:27:22 +01:00
parent 316e8f9239
commit d01b8e163d
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands
{
ConsoleDisplayList cdl = new ConsoleDisplayList();
cdl.AddRow("Name", so.Name);
cdl.AddRow("Descrition", so.Description);
cdl.AddRow("Description", so.Description);
cdl.AddRow("Local ID", so.LocalId);
cdl.AddRow("UUID", so.UUID);
cdl.AddRow("Location", string.Format("{0} @ {1}", so.AbsolutePosition, so.Scene.Name));