Skip to content

Commit

Permalink
added warn_missing_spec_all to 3 wa_raft modules
Browse files Browse the repository at this point in the history
Summary: other modules in this app have it

Differential Revision: D56070527

fbshipit-source-id: cbf7d2dba460ac75fadb4a832d04bfb9b92a58d3
  • Loading branch information
Alexander Shturm authored and facebook-github-bot committed Apr 12, 2024
1 parent 9171825 commit 65f004e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/kvstore/src/kvstore_app.erl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
%%% the LICENSE file in the root directory of this source tree.

-module(kvstore_app).
-compile(warn_missing_spec).
-compile(warn_missing_spec_all).

%% API
-export([
Expand Down
2 changes: 1 addition & 1 deletion examples/kvstore/src/kvstore_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
%%% This module offers APIs to access the storage.
%%%
-module(kvstore_client).
-compile(warn_missing_spec).
-compile(warn_missing_spec_all).

-export([
read/1,
Expand Down
2 changes: 1 addition & 1 deletion examples/kvstore/src/kvstore_sup.erl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
%%%

-module(kvstore_sup).
-compile(warn_missing_spec).
-compile(warn_missing_spec_all).

-behaviour(supervisor).

Expand Down

0 comments on commit 65f004e

Please sign in to comment.