diff --git a/docs/standard-library/random.md b/docs/standard-library/random.md index c15bac4ff2..e54f161a6f 100644 --- a/docs/standard-library/random.md +++ b/docs/standard-library/random.md @@ -67,7 +67,7 @@ Defines facilities for random number generation, allowing creation of uniformly - The most useful pairing for most applications is the `mt19937` engine with `uniform_int_distribution`, as shown in the [code example](#code) later in this article. - There are many options to choose from in the `` header, and any of them is preferable to the outdated C Runtime function `rand()`. For information about what's wrong with `rand()` and how `` addresses these shortcomings, see [this video](http://go.microsoft.com/fwlink/LinkId=397615). + There are many options to choose from in the `` header, and any of them is preferable to the outdated C Runtime function `rand()`. For information about what's wrong with `rand()` and how `` addresses these shortcomings, see [this video](http://go.microsoft.com/fwlink/?LinkId=397615). ## Examples The following code example shows how to generate some random numbers in this case five of them using a generator created with non-deterministic seed.