Closed
Description
While reading the coroutines basics docs https://kotlinlang.org/docs/reference/coroutines/basics.html
I noticed that a reference link to " CoroutineScope" interface leads to the "coroutineScope" function.
On the docs it reads like this, "Essentially, coroutines are light-weight threads. They are launched with launch coroutine builder in a context of some CoroutineScope." but the link on the "CoroutineScope" here leads to the coroutineScope function, rather than "CoroutineScope" interface .
Personally, I feel referencing the interface should be the right thing but I could be wrong.