File tree Expand file tree Collapse file tree
lib/elixir/lib/module/types Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5891,11 +5891,11 @@ defmodule Module.Types.Descr do
58915891 #
58925892 # If disjoint?(a1, a2), we end up with:
58935893 #
5894- # (a1 and C1) or (U1 and not d2 ) or (not a1 and D1 and not a2)
5894+ # (a1 and C1) or (U1 and not a2 ) or (not a1 and D1 and not a2)
58955895 #
58965896 # If subtype?(a1, a2), we end up with:
58975897 #
5898- # (U1 and not d2 ) or (D1 and not a2)
5898+ # (U1 and not a2 ) or (D1 and not a2)
58995899 #
59005900 # If one key difference, then we compute the difference
59015901 # and the union of said keys, returning a_union and a_diff:
@@ -5948,7 +5948,7 @@ defmodule Module.Types.Descr do
59485948 # Result: a1 and not C2 and not U2
59495949 #
59505950 # If one key difference, then we compute the difference
5951- # and the intersection of said keys, returning a_union and a_diff:
5951+ # and the intersection of said keys, returning a_int and a_diff:
59525952 #
59535953 # a1 and not (a2 and C2) and not U2 and (a2 or not D2)
59545954 # ((a1 and not a2) or (a1 and not C2)) and not U2 and (a2 or not D2)
You can’t perform that action at this time.
0 commit comments