Skip to content

Commit f8e600d

Browse files
committed
removed illegal characters
1 parent 0784c55 commit f8e600d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tutorials/tour/_posts/2017-02-13-higher-order-functions.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,9 @@ def urlBuilder(ssl: Boolean, domainName: String): (String, String) => String = {
107107
val schema = if (ssl) "https://" else "http://"
108108
(endpoint: String, query: String) => s"$schema$domainName/$endpoint?$query"
109109
}
110-
110+
111111
val domainName = "www.example.com"
112112
def getURL = urlBuilder(ssl=true, domainName)
113-
114113
val endpoint = "users"
115114
val query = "id=1"
116115
val url = getURL(endpoint, query) // "https://www.example.com/users?id=1": String

0 commit comments

Comments
 (0)