You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: benchmark/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ julia --project=benchmark -e '
9
9
10
10
### To compare against baseline locally:
11
11
12
-
Note, must have a `baseline` branch, which will be the refrence point against the currently active branch. A common use case is to point the baseline to the previous commit.
12
+
Note, must have a `baseline` branch, which will be the reference point against the currently active branch. A common use case is to point the baseline to the previous commit.
13
13
14
14
This can be accomplished with
15
15
```
@@ -32,12 +32,12 @@ julia --project=benchmark -e '
32
32
### To compare against baseline locally (without re-running baseline):
33
33
34
34
Running the above baseline comparison produces a `benchmark/result-baseline.json` file which is
35
-
used as a refrence for new changes.
35
+
used as a reference for new changes.
36
36
If the baseline remains unchanged during development, then it is unnecessary to regenerate this file,
37
37
and the following command may be used to save benchmarking time.
Copy file name to clipboardExpand all lines: src/priorityqueue.jl
+1-1
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ end
98
98
# Construction inferring Key/Value types from input
99
99
# e.g. PriorityQueue{}
100
100
101
-
PriorityQueue(o1::Ordering, o2::Ordering) =throw(ArgumentError("PriorityQueue with two parameters must be called with an Ordering and an interable of pairs"))
101
+
PriorityQueue(o1::Ordering, o2::Ordering) =throw(ArgumentError("PriorityQueue with two parameters must be called with an Ordering and an iterable of pairs"))
0 commit comments