Skip to content

Commit 02c0a00

Browse files
committed
Fix Elvis errors
1 parent 51e7f2b commit 02c0a00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/collectors/vm/prometheus_vm_system_info_collector.erl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ allocators() ->
317317
Allocators = erlang:system_info(alloc_util_allocators),
318318
%% versions is deleted in order to allow the use of the orddict api,
319319
%% and never really having come across a case where it was useful to know.
320-
[{{A,N},lists:sort(proplists:delete(versions,Props))} ||
320+
[{{A, N}, lists:sort(proplists:delete(versions, Props))} ||
321321
A <- Allocators,
322-
Allocs <- [erlang:system_info({allocator,A})],
322+
Allocs <- [erlang:system_info({allocator, A})],
323323
Allocs =/= false,
324-
{_,N,Props} <- Allocs].
324+
{_, N, Props} <- Allocs].

0 commit comments

Comments
 (0)