Skip to content

Commit 630d5ca

Browse files
committed
Fix typos in code comments
1 parent 5bf4df5 commit 630d5ca

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/elixir/lib/module/types/descr.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)