Skip to content

Commit 5fc03d0

Browse files
committed
make change in the translated tours as well
1 parent c53975d commit 5fc03d0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

_ja/tour/higher-order-functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ object SalaryRaiser {
104104

105105
```tut
106106
def urlBuilder(ssl: Boolean, domainName: String): (String, String) => String = {
107-
val schema = if (ssl) "https://" else "https://"
107+
val schema = if (ssl) "https://" else "http://"
108108
(endpoint: String, query: String) => s"$schema$domainName/$endpoint?$query"
109109
}
110110

_pl/tour/higher-order-functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Oto przykład funkcji zwracającej inną funkcję.
113113

114114
```tut
115115
def urlBuilder(ssl: Boolean, domainName: String): (String, String) => String = {
116-
val schema = if (ssl) "https://" else "https://"
116+
val schema = if (ssl) "https://" else "http://"
117117
(endpoint: String, query: String) => s"$schema$domainName/$endpoint?$query"
118118
}
119119

_ru/tour/higher-order-functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ object SalaryRaiser {
9595

9696
```tut
9797
def urlBuilder(ssl: Boolean, domainName: String): (String, String) => String = {
98-
val schema = if (ssl) "https://" else "https://"
98+
val schema = if (ssl) "https://" else "http://"
9999
(endpoint: String, query: String) => s"$schema$domainName/$endpoint?$query"
100100
}
101101

_zh-cn/tour/higher-order-functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ object SalaryRaiser {
9191

9292
```tut
9393
def urlBuilder(ssl: Boolean, domainName: String): (String, String) => String = {
94-
val schema = if (ssl) "https://" else "https://"
94+
val schema = if (ssl) "https://" else "http://"
9595
(endpoint: String, query: String) => s"$schema$domainName/$endpoint?$query"
9696
}
9797

0 commit comments

Comments
 (0)