Remove accidental unicode NBSP char

This commit is contained in:
Ulf Wiger 2025-06-19 20:18:52 +02:00
parent 04e6063ce0
commit f9352b6ff0

View File

@ -189,7 +189,7 @@ fill_tab(t = Tab) ->
[mrdb:insert(Tab, {Tab, K, V}) || {K,V} <- raw_objs()],
ok;
fill_tab(r = Tab) ->
[mrdb:insert(Tab, Obj) || Obj <- objs()],
[mrdb:insert(Tab, Obj) || Obj <- objs()],
ok.
prefixed_raw_objs(Pfx) ->