Typos or word-improvements

This commit is contained in:
thatsIch
2015-03-26 11:20:31 +01:00
parent dff48c07c9
commit ec05bd994c
5 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -78,15 +78,15 @@ public class ConfigManager implements IConfigManager
/**
* save all settings using config manager.
*
* @param tagCompound to be written to compound
* @param destination to be written to compound
*/
@Override
public void writeToNBT(NBTTagCompound tagCompound)
public void writeToNBT(NBTTagCompound destination )
{
for (Enum e : this.Settings.keySet())
{
tagCompound.setString( e.name(), this.Settings.get( e ).toString() );
destination.setString( e.name(), this.Settings.get( e ).toString() );
}
}