diff --git a/doc/usermanual/Creating Library Modules.adoc b/doc/usermanual/Creating Library Modules.adoc index f9214ea..108a013 100644 --- a/doc/usermanual/Creating Library Modules.adoc +++ b/doc/usermanual/Creating Library Modules.adoc @@ -170,7 +170,7 @@ CAUTION: If there is untrusted user input, this approach is vulnerable to https: === Unwrapping Kotlite `RuntimeValue` to a Kotlin value -It is relatively easy. Just cast the type and call the member property `.value`. +It is relatively easy. Just cast to the right type and call the member property `.value`. [cols="20,80a"] |=== diff --git a/stdlib/build.gradle.kts b/stdlib/build.gradle.kts index 976f711..457357f 100644 --- a/stdlib/build.gradle.kts +++ b/stdlib/build.gradle.kts @@ -39,14 +39,14 @@ kotlin { } testTask { useMocha { - timeout = "11s" + timeout = "21s" // github mac runner is slow } } } nodejs { testTask { useMocha { - timeout = "11s" + timeout = "21s" // github mac runner is slow } } }