From 3117bd69cb59a98e24f5fea72a4404813cfb40b0 Mon Sep 17 00:00:00 2001 From: Colin Robertson Date: Fri, 18 Aug 2017 14:32:33 -0700 Subject: [PATCH] Update random.md Fix broken fwlink to presentation on rand --- docs/standard-library/random.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard-library/random.md b/docs/standard-library/random.md index c15bac4ff28..e54f161a6f9 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.