Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
minho42 authored and berkerpeksag committed Aug 11, 2019
1 parent f6f1ed2 commit 75cd5cc
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cms/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import datetime


class ContentManagableAdminTests(unittest.TestCase):
class ContentManageableAdminTests(unittest.TestCase):
def make_admin(self, **kwargs):
"""
Construct a dummy subclass of ContentManageableModelAdmin with
Expand Down
2 changes: 1 addition & 1 deletion templates/events/eventlocation_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="more-by-location">
<h3 class="widget-title">Find Events near you <!-- HTML5 geolocation? --></h3>

<!-- 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. -->
<!-- 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. -->

<form>
<fieldset title="Narrow or expand the event search by location and timeframe">
Expand Down
4 changes: 2 additions & 2 deletions templates/jobs/job_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -239,9 +239,9 @@ <h3 class="widget-title">More jobs in <a href="{% url 'jobs:job_list_category' s
"duplicate": "This seems to be a duplicate of your earlier posting.\n\nIf not, please rephrase to make the difference clear.\n\nThanks."
};
$(document).ready(function() {
var commment_field = $('#id_comment');
var comment_field = $('#id_comment');
$('#canned_response').change(function(){
commment_field.val(responses[$(this).val()]);
comment_field.val(responses[$(this).val()]);
});
});
</script>
Expand Down
2 changes: 1 addition & 1 deletion templates/nominations/nominee_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@


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

//initialisation function
Expand Down
2 changes: 1 addition & 1 deletion templates/python/inner.html
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ <h1 id="tables">Tabular data</h1>
<h1 id="form">Form Example</h1>
<p>Basic <code>&lt;form&gt;</code> container and inner common element styles</p>

<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>
<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>

<div class="example">
<form>
Expand Down
2 changes: 1 addition & 1 deletion templates/users/membership_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ <h1 class="default-title">Register to become a PSF Member</h1>
<p>I have previously agreed to the <a href="/psf/codeofconduct/">PSF Code of Conduct</a>.</p>
</div>
{% else %}
{# only display CoC on intial creation #}
{# only display CoC on initial creation #}
<div class="psf-codeofconduct">
{% box 'psf-codeofconduct' %}
</div>
Expand Down

0 comments on commit 75cd5cc

Please sign in to comment.