Skip to content

Commit

Permalink
include format and a few docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
axs-mvd committed May 14, 2023
1 parent 2bb6626 commit 351a8db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/brod_transaction_processor.erl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
%%
-module(brod_transaction_processor).

-include("include/brod.hrl").
-include("brod.hrl").

%public API
-export([do/3]).
Expand Down Expand Up @@ -87,9 +87,9 @@
%%
%% FizzBuzz sample:
%%
%% fizz_buzz(N) when (N rem 15) == 0 -> <<"FizzBuzz">>;
%% fizz_buzz(N) when (N rem 3) == 0 -> <<"Fizz">>;
%% fizz_buzz(N) when (N rem 5) == 0 -> <<"Buzz">>;
%% fizz_buzz(N) when (N rem 15) == 0 -> "FizzBuzz"
%% fizz_buzz(N) when (N rem 3) == 0 -> "Fizz"
%% fizz_buzz(N) when (N rem 5) == 0 -> "Buzz";
%% fizz_buzz(N) -> N end.
%%
%% brod_transaction_processor:do(
Expand Down

0 comments on commit 351a8db

Please sign in to comment.