diff Core.lua @ 40:abc824800387

Fixed some typos and cleaned up some files.
author Zerotorescue
date Sun, 12 Dec 2010 16:37:33 +0100
parents 58fb38f0b447
children 87d68ccf0a8f
line wrap: on
line diff
--- a/Core.lua	Sat Dec 11 13:53:37 2010 +0100
+++ b/Core.lua	Sun Dec 12 16:37:33 2010 +0100
@@ -21,7 +21,8 @@
 	
 	local defaults = {
 		global = {
-			groups = {},
+			groups = {
+			},
 			defaults = {
 				auctionPricingAddon = "Auctioneer",
 				itemCountAddon = "Altoholic",
@@ -34,7 +35,8 @@
 				bonusQueue = 0.1,
 				priceThreshold = 0,
 				summaryHidePriceThreshold = false,
-				trackAtCharacters = {},
+				trackAtCharacters = {
+				},
 				localItemData = {
 					["Bag"] = true,
 					["Auction House"] = true,
@@ -53,7 +55,8 @@
 			},
 		},
 		factionrealm = {
-			characters = {},
+			characters = {
+			},
 		},
 	};
 	
@@ -128,7 +131,7 @@
 	self:MakeItemLinkButtonWidget();
 	self:MakeConfigItemLinkButtonWidget();
 	
-	-- Remember this character is mine
+	-- Remember this character is on this account
 	local playerName = UnitName("player");
 	if not self.db.factionrealm.characters[playerName] then
 		self.db.factionrealm.characters[playerName] = true;
@@ -386,7 +389,7 @@
 end
 
 local slashArgs = {};
-local slashError = "Wrong arguement, the following arguements are available:";
+local slashError = "Wrong argument, the following arguements are available:";
 
 function addon:RegisterSlash(func, args, description)
 	for _, arg in pairs(args) do