Skip to content

Commit f9ccdb3

Browse files
committed
remove period :)
1 parent baaccb3 commit f9ccdb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/ts/Part2Ex3Optional.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Let's explore this by converting Optionals to and from Arrays.
137137
One of the most useful functions on Optional is "map". We say this function "maps a function over the Optional".
138138
139139
If the Optional is some, it runs the function over the some and returns the result as a "some".
140-
If the Optional. is none, it returns none.
140+
If the Optional is none, it returns none.
141141
142142
Above, we talked about how an Optional is like an array restricted to 0 or 1 elements, so mapping over an Optional
143143
is very similar to mapping over an array (which we did in Exercise 2).

0 commit comments

Comments
 (0)