Skip to content

Commit 75cd5cc

Browse files
minho42berkerpeksag
authored andcommitted
Fixed typos
1 parent f6f1ed2 commit 75cd5cc

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

cms/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import datetime
1010

1111

12-
class ContentManagableAdminTests(unittest.TestCase):
12+
class ContentManageableAdminTests(unittest.TestCase):
1313
def make_admin(self, **kwargs):
1414
"""
1515
Construct a dummy subclass of ContentManageableModelAdmin with

templates/events/eventlocation_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<div class="more-by-location">
1818
<h3 class="widget-title">Find Events near you <!-- HTML5 geolocation? --></h3>
1919

20-
<!-- If we wanna have more fun with it, we can allow the user to choose to expand the location matching before they go anywhere and load more events below with Ajax. Initial load woud; grab locations within five miles (?) or at least 10 active locations (places that have an event coming up within the next 90 (?) days. -->
20+
<!-- If we wanna have more fun with it, we can allow the user to choose to expand the location matching before they go anywhere and load more events below with Ajax. Initial load would; grab locations within five miles (?) or at least 10 active locations (places that have an event coming up within the next 90 (?) days. -->
2121

2222
<form>
2323
<fieldset title="Narrow or expand the event search by location and timeframe">

templates/jobs/job_detail.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,9 @@ <h3 class="widget-title">More jobs in <a href="{% url 'jobs:job_list_category' s
239239
"duplicate": "This seems to be a duplicate of your earlier posting.\n\nIf not, please rephrase to make the difference clear.\n\nThanks."
240240
};
241241
$(document).ready(function() {
242-
var commment_field = $('#id_comment');
242+
var comment_field = $('#id_comment');
243243
$('#canned_response').change(function(){
244-
commment_field.val(responses[$(this).val()]);
244+
comment_field.val(responses[$(this).val()]);
245245
});
246246
});
247247
</script>

templates/nominations/nominee_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136

137137

138138
//create a started flag so we can prevent the initialisation
139-
//function firing from both DOMContentLoaded and window.onloiad
139+
//function firing from both DOMContentLoaded and window.onload
140140
var started = false;
141141

142142
//initialisation function

templates/python/inner.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ <h1 id="tables">Tabular data</h1>
519519
<h1 id="form">Form Example</h1>
520520
<p>Basic <code>&lt;form&gt;</code> container and inner common element styles</p>
521521

522-
<p>The <code>&lt;fieldset&gt;</code> element groups related fields within a form and should have a title attribute and a corresponding <code>&lt;legend&gt;</code>. The <code>&lt;label&gt;</code> element ensures field descriptions are associated with their corresponding form widgets, and are very important for form accesibility.</p>
522+
<p>The <code>&lt;fieldset&gt;</code> element groups related fields within a form and should have a title attribute and a corresponding <code>&lt;legend&gt;</code>. The <code>&lt;label&gt;</code> element ensures field descriptions are associated with their corresponding form widgets, and are very important for form accessibility.</p>
523523

524524
<div class="example">
525525
<form>

templates/users/membership_form.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ <h1 class="default-title">Register to become a PSF Member</h1>
7474
<p>I have previously agreed to the <a href="/psf/codeofconduct/">PSF Code of Conduct</a>.</p>
7575
</div>
7676
{% else %}
77-
{# only display CoC on intial creation #}
77+
{# only display CoC on initial creation #}
7878
<div class="psf-codeofconduct">
7979
{% box 'psf-codeofconduct' %}
8080
</div>

0 commit comments

Comments
 (0)