Skip to content
This repository was archived by the owner on Sep 18, 2021. It is now read-only.
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
2 changes: 1 addition & 1 deletion src/ddmin.erl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

-export([ddmin/2]).

%% @doc A cirumstance can be any input data to a function or message to a process.
%% @doc A circumstance can be any input data to a function or message to a process.
%% It is up to the user how to cut circumstances, e.g. into text, tuples, numbers,
%% HTML/XML tags, other structured input etc.
-type circumstance() :: term().
Expand Down
4 changes: 2 additions & 2 deletions src/naive_recorder.erl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
%% @doc Naive recorder of messages to a process using dbg tracer.
%% Records all received messages to a pid and
%% stores them ordered by arrivial in an ETS.
%% stores them ordered by arrival in an ETS.
-module(naive_recorder).

-export([ record/1
Expand Down Expand Up @@ -45,7 +45,7 @@ foo_loop() ->
receive
{hello,_} -> foo_loop();
bye -> ok;
_ -> throw(exepected_error)
_ -> throw(expected_error)
end.

simple_test() ->
Expand Down