Skip to content

Commit 3117bd6

Browse files
author
Colin Robertson
authored
Update random.md
Fix broken fwlink to presentation on rand
1 parent 6334187 commit 3117bd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard-library/random.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Defines facilities for random number generation, allowing creation of uniformly
6767

6868
- 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.
6969

70-
There are many options to choose from in the `<random>` header, and any of them is preferable to the outdated C Runtime function `rand()`. For information about what's wrong with `rand()` and how `<random>` addresses these shortcomings, see [this video](http://go.microsoft.com/fwlink/LinkId=397615).
70+
There are many options to choose from in the `<random>` header, and any of them is preferable to the outdated C Runtime function `rand()`. For information about what's wrong with `rand()` and how `<random>` addresses these shortcomings, see [this video](http://go.microsoft.com/fwlink/?LinkId=397615).
7171

7272
## <a name="code"></a> Examples
7373
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.

0 commit comments

Comments
 (0)