Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kianmeng committed Sep 5, 2021
1 parent 577c553 commit 84927fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/excoveralls/local.ex
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ defmodule ExCoveralls.Local do
end

@doc """
Calucate count information from thhe coverage stats.
Calculate count information from the coverage stats.
"""
def calculate_count(coverage) do
do_calculate_count(coverage, 0, 0, 0)
Expand Down
2 changes: 1 addition & 1 deletion lib/excoveralls/stats.ex
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defmodule ExCoveralls.Stats do

defmodule Line do
@moduledoc """
Stores count information and source for a sigle line.
Stores count information and source for a single line.
"""

defstruct coverage: nil, source: ""
Expand Down
2 changes: 1 addition & 1 deletion test/travis_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ defmodule ExCoveralls.TravisTest do
assert(%{ "service_name" => "travis-ci" } = parsed)
end

test "can be overriden to submit as `travis-pro`" do
test "can be overridden to submit as `travis-pro`" do
parsed = Travis.generate_json(@source_info, %{ pro: true, another_key: 3 }) |> Jason.decode!
assert(%{ "service_name" => "travis-pro" } = parsed)
assert("repo_token" in Map.keys(parsed))
Expand Down

0 comments on commit 84927fd

Please sign in to comment.