@@ -36,7 +36,7 @@ def Full(replay):
3636 replay .is_ladder = (replay .category == "Ladder" )
3737 replay .is_private = (replay .category == "Private" )
3838
39- #If we don't atleast have details and attributes_events we can go no further
39+ #If we don't at least have details and attributes_events we can go no further
4040 if not ('details' in replay .raw and 'attributes_events' in replay .raw ):
4141 return replay
4242
@@ -64,7 +64,7 @@ def Full(replay):
6464
6565 # Create the player using the current pid and the player name from
6666 # The details file. This works because players are stored in order
67- # of pid intside of the details file. Attributes and Details must be
67+ # of pid inside of the details file. Attributes and Details must be
6868 # processed together because Details doesn't index players by or
6969 # store their player ids; Attributes can provide that information
7070 # and allow for accurate pid mapping even with computers, observers,
@@ -126,7 +126,7 @@ def Full(replay):
126126 if 'initData' in replay .raw :
127127 # Assign the default region to computer players for consistency
128128 # We know there will be a default region because there must be
129- # atleast 1 human player or we wouldn't have a replay.
129+ # at least 1 human player or we wouldn't have a replay.
130130 for player in replay .players :
131131 if player .type == 'Computer' :
132132 player .region = default_region
@@ -139,7 +139,7 @@ def Full(replay):
139139 replay .people .append (observer )
140140 replay .person [i + 1 ] = observer
141141
142- # Miscellenious people processing
142+ # Miscellaneous people processing
143143 replay .humans = filter (lambda p : p .type == 'Human' , replay .people )
144144
145145 if 'message_events' in replay .raw :
@@ -258,7 +258,7 @@ def Full(replay):
258258
259259 # If there are any big teams left or more than one 1 person
260260 # team left this is definitely either a loss or a really
261- # akward tie between 3 or more people on 2 or more teams.
261+ # awkward tie between 3 or more people on 2 or more teams.
262262 #
263263 # Since I don't think ties can be detected, ignore that case
264264 if len (pcount ) > 2 or big_teams :
0 commit comments