Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion benchmark/scripts/compare_perf_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ class TestComparator(object):
It determines which tests were `added`, `removed` and which can be
compared. It then splits the `ResultComparison`s into 3 groups according to
the `delta_threshold` by the change in performance: `increased`,
`descreased` and `unchanged`. Whole computation is performed during
`decreased` and `unchanged`. Whole computation is performed during
initialization and results are provided as properties on this object.

The lists of `added`, `removed` and `unchanged` tests are sorted
Expand Down
2 changes: 1 addition & 1 deletion benchmark/scripts/test_compare_perf_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ def test_values(self):
)

def test_justified_columns(self):
"""Table columns are all formated with same width, defined by the
"""Table columns are all formatted with same width, defined by the
longest value.
"""
self.assert_markdown_contains(
Expand Down
2 changes: 1 addition & 1 deletion benchmark/scripts/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Mock(object):
"""

def __init__(self, responses=None):
"""Optionaly initialized with a list of expected calls. See expect."""
"""Optionally initialized with a list of expected calls. See expect."""
self.calls = []
self.expected = []
self.respond = dict()
Expand Down
2 changes: 1 addition & 1 deletion benchmark/single-source/SortIntPyramids.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ let pyramidTemplate: [Int] = (1...pH) + (1...pH).reversed()
// A^R - reversed array A, + - array concatenation operator,
// A indices are in range 1...A.length.
// define adjacent pyramid as A + A^R + A + A^R,
// defne adjacent pyramid hight as A[A.length].
// defne adjacent pyramid height as A[A.length].
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"defne" is also a typo.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, fixed!



// On 25% of following dataset stdlib sorting function will use heapSort.
Expand Down