Skip to content

Commit 591c461

Browse files
Update lib/elixir/src/elixir_json.erl
Co-authored-by: Eksperimental <[email protected]>
1 parent 06e01dd commit 591c461

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/src/elixir_json.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ list_loop([Elem | Rest], Encode) -> [$,, Encode(Elem, Encode) | list_loop(Rest,
314314
encode_map(Map, Encode) when is_map(Map) ->
315315
do_encode_map(Map, Encode).
316316

317-
%% TODO: Remove conditional once Erlang/OTP 26+ is supported exclusively supported.
317+
%% TODO: Remove conditional once Erlang/OTP 26+ is exclusively supported.
318318
-if(?OTP_RELEASE >= 26).
319319
do_encode_map(Map, Encode) when is_function(Encode, 2) ->
320320
encode_object([[$,, key(Key, Encode), $: | Encode(Value, Encode)] || Key := Value <- Map]).

0 commit comments

Comments
 (0)