Skip to content

Commit 4987af3

Browse files
authored
Fix typos (#48)
1 parent eaf93d3 commit 4987af3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/spandex_datadog/api_server.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ defmodule SpandexDatadog.ApiServer do
222222
end)
223223
else
224224
# We get benefits from running in a separate process (like better GC)
225-
# So we async/await here to mimic the behavour above but still apply backpressure
225+
# So we async/await here to mimic the behaviour above but still apply backpressure
226226
task = Task.async(fn -> send_and_log(traces, state) end)
227227
Task.await(task)
228228
end

test/adapter_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ defmodule SpandexDatadog.Test.AdapterTest do
6565
assert(Util.find_span("error_one_deep/0").error == 1)
6666
end
6767

68-
test "successul sibling spans are not marked as failures when sibling fails" do
68+
test "successful sibling spans are not marked as failures when sibling fails" do
6969
Util.can_fail(fn -> TracedModule.two_fail_one_succeeds() end)
7070

7171
assert(Util.find_span("error_one_deep/0", 0).error == 1)

0 commit comments

Comments
 (0)