Use proper right parenthesis in example's comment: "$(RPAREN)" -> ")"

This commit is contained in:
Miha Marolt 2016-03-08 18:47:32 +01:00
parent 1f0cbb6280
commit d22a24a702

View file

@ -20,7 +20,7 @@ Example:
---- ----
// Generate a uniformly-distributed integer in the range [0, 14] // Generate a uniformly-distributed integer in the range [0, 14]
auto i = uniform(0, 15); auto i = uniform(0, 15);
// Generate a uniformly-distributed real in the range [0, 100$(RPAREN) // Generate a uniformly-distributed real in the range [0, 100)
// using a specific random generator // using a specific random generator
Random gen; Random gen;
auto r = uniform(0.0L, 100.0L, gen); auto r = uniform(0.0L, 100.0L, gen);