@@ -215,7 +215,7 @@ def _get_ref(self, meeting=None, meeting_doc_refs=settings.MEETING_DOC_HREFS):
215215 which returns an url to the datatracker page for the document.
216216 """
217217 # If self.external_url truly is an url, use it. This is a change from
218- # the earlier resulution order, but there's at the moment one single
218+ # the earlier resolution order, but there's at the moment one single
219219 # instance which matches this (with correct results), so we won't
220220 # break things all over the place.
221221 if not hasattr (self , '_cached_href' ):
@@ -921,7 +921,7 @@ def future_presentations(self):
921921
922922 def last_presented (self ):
923923 """ returns related SessionPresentation objects for the most recent meeting in the past"""
924- # Assumes no two meetings have the same start date - if the assumption is violated, one will be chosen arbitrariy
924+ # Assumes no two meetings have the same start date - if the assumption is violated, one will be chosen arbitrarily
925925 today = date_today ()
926926 candidate_presentations = self .sessionpresentation_set .filter (session__meeting__date__lte = today )
927927 candidate_meetings = set ([p .session .meeting for p in candidate_presentations if p .session .meeting .end_date ()< today ])
@@ -1320,7 +1320,7 @@ def all_positions(self):
13201320 if e .pos != prev :
13211321 latest .old_positions .append (e .pos )
13221322
1323- # get rid of trailling "No record" positions, some old ballots
1323+ # get rid of trailing "No record" positions, some old ballots
13241324 # have plenty of these
13251325 for p in positions :
13261326 while p .old_positions and p .old_positions [- 1 ].slug == "norecord" :
0 commit comments