diff --git a/compiler/builtins/docs/Dict.roc b/compiler/builtins/docs/Dict.roc index 3aad9e4eee..7fa5a30a39 100644 --- a/compiler/builtins/docs/Dict.roc +++ b/compiler/builtins/docs/Dict.roc @@ -1,5 +1,21 @@ interface Dict - exposes [ isEmpty, map ] + exposes + [ + Dict, + empty, + single, + get, + walk, + insert, + len, + remove, + contains, + keys, + values, + union, + intersection, + difference + ] imports [] size : Dict * * -> Nat diff --git a/compiler/module/src/symbol.rs b/compiler/module/src/symbol.rs index 04464f7264..a0d95181e6 100644 --- a/compiler/module/src/symbol.rs +++ b/compiler/module/src/symbol.rs @@ -988,8 +988,6 @@ define_builtins! { 14 DICT_UNION: "union" 15 DICT_INTERSECTION: "intersection" 16 DICT_DIFFERENCE: "difference" - - } 7 SET: "Set" => { 0 SET_SET: "Set" imported // the Set.Set type alias