Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git*,*.pdf,*.svg,vendor,*.lock,*.css,.codespellrc
check-hidden = true
ignore-regex= .*view=FitH.*
# TODO: fix "superceded" typo in the model
ignore-words-list = te,aas,nwo,superceded
2 changes: 1 addition & 1 deletion app/javascript/custom/papers.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authorCheck = function() {
}
};

// Set the height of the paper container when loaded and everytime window is resized
// Set the height of the paper container when loaded and every time window is resized
setPaperSize = function() {
var height, paper, paper_container, width;
if ($("#joss-paper").length > 0) {
Expand Down
2 changes: 1 addition & 1 deletion app/views/content/layout/_footer.html.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="row footer">
<div class="col-sm-6">
<%= link_to image_tag("osi.png", height: "65px"), "https://opensource.org" %>
<p><%= Rails.application.settings['name'] %> is an <a href="https://opensource.org/affiliates/list">affiliate</a> of the <a href="https://opensource.org">Open Source Inititative</a>.</p>
<p><%= Rails.application.settings['name'] %> is an <a href="https://opensource.org/affiliates/list">affiliate</a> of the <a href="https://opensource.org">Open Source Initiative</a>.</p>
</div>

<div class="col-sm-6">
Expand Down
2 changes: 1 addition & 1 deletion docs/editor_onboarding.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ All new editors at JOSS have an onboarding call with an Editor-in-Chief. You can
**Wrapping up**

- Make sure you've highlighted everything in the ['top tips'](editor_tips) section of our docs.
- Reinforce that this is a commitment, and thay regular attention to their submissions is absolutely critical (i.e., check in a couple of times per week).
- Reinforce that this is a commitment, and that regular attention to their submissions is absolutely critical (i.e., check in a couple of times per week).
- Ask if they would like to move forward or would like time to consider the opportunity.
- If they want to move forward, highlight they will receive a small number of invites: One to the JOSS editors GitHub team, a Slack invite, a Google Group invite, and an invite to the JOSS website to fill out their profile.
- If they are joining the team, make sure they mark themselves as unavailable in the [JOSS reviewers database](https://reviewers.joss.theoj.org/) (so they don't get asked to review any longer).
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/utils.rake
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ namespace :utils do

editor = review.editor.gsub('@', '')

# This is a pre-preview issue without an editor asssigned
# This is a pre-preview issue without an editor assigned
if editor == "Pending" && review.pre_review?
puts "Doing nothing for #{review.number}"
else
Expand Down
2 changes: 1 addition & 1 deletion spec/models/paper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
expect(paper.is_a_retraction_notice?).to be true
end

it "should return false oherwise" do
it "should return false otherwise" do
paper = create(:paper)

expect(paper.retraction_for_id).to be_nil
Expand Down