From d85293400dce662228beeb7ae12c44787f07f702 Mon Sep 17 00:00:00 2001 From: Mattias Ellert <mattias.ellert@physics.uu.se> Date: Fri, 5 May 2017 19:19:24 +0200 Subject: [PATCH] Typos --- graf2d/graf/src/TTF.cxx | 2 +- graf2d/postscript/src/TPostScript.cxx | 8 ++++---- math/mathcore/inc/Math/MixMaxEngine.h | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/graf2d/graf/src/TTF.cxx b/graf2d/graf/src/TTF.cxx index adc614ac182..1256e9a41d7 100644 --- a/graf2d/graf/src/TTF.cxx +++ b/graf2d/graf/src/TTF.cxx @@ -471,7 +471,7 @@ Int_t TTF::SetTextFont(const char *fontname, Int_t italic) /// |---------|---------------------------|------------------| /// | 1 | times-medium-i-normal | timesi.ttf | /// | 2 | times-bold-r-normal | timesbd.ttf | -/// | 3 | times-bold-i-normal | timesi.ttf | +/// | 3 | times-bold-i-normal | timesbi.ttf | /// | 4 | helvetica-medium-r-normal | arial.ttf | /// | 5 | helvetica-medium-o-normal | ariali.ttf | /// | 6 | helvetica-bold-r-normal | arialbd.ttf | diff --git a/graf2d/postscript/src/TPostScript.cxx b/graf2d/postscript/src/TPostScript.cxx index c869e5e1053..221dade1495 100644 --- a/graf2d/postscript/src/TPostScript.cxx +++ b/graf2d/postscript/src/TPostScript.cxx @@ -2594,10 +2594,10 @@ void TPostScript::Text(Double_t xx, Double_t yy, const char *chars) { "Root.PSFont.5", "/Helvetica-Oblique" }, { "Root.PSFont.6", "/Helvetica-Bold" }, { "Root.PSFont.7", "/Helvetica-BoldOblique" }, - { "Root.PSFont.8", "/Courrier" }, - { "Root.PSFont.9", "/Courrier-Oblique" }, - { "Root.PSFont.10", "/Courrier-Bold" }, - { "Root.PSFont.11", "/Courrier-BoldOblique" }, + { "Root.PSFont.8", "/Courier" }, + { "Root.PSFont.9", "/Courier-Oblique" }, + { "Root.PSFont.10", "/Courier-Bold" }, + { "Root.PSFont.11", "/Courier-BoldOblique" }, { "Root.PSFont.12", "/Symbol" }, { "Root.PSFont.13", "/Times-Roman" }, { "Root.PSFont.14", "/ZapfDingbats" }, diff --git a/math/mathcore/inc/Math/MixMaxEngine.h b/math/mathcore/inc/Math/MixMaxEngine.h index e1e4c66da7e..2e7c16ac538 100644 --- a/math/mathcore/inc/Math/MixMaxEngine.h +++ b/math/mathcore/inc/Math/MixMaxEngine.h @@ -38,7 +38,7 @@ namespace ROOT { /** MixMaxEngine is a wrapper class for the MIXMAX Random number generator. - MIXMASX is a matrix-recursive random number generator introduced by + MIXMAX is a matrix-recursive random number generator introduced by G. Savvidy. The real implementation of the generator, written in C, is in the mixmax.h and mixmax.cxx files. @@ -54,7 +54,7 @@ namespace ROOT { * MIXMAX with N = 17, from the 2.0 version with $s=0$ and $m=2^{36}+1$. The period of the generator is $10^{294}$. - * MIMAMX with N = 256 from the 1.0 version. The period is (for `SkipNumber=0`) $10^{4682}$. For this generatior we reccomend using a default value of `SkipNumber=2`. + * MIXMAX with N = 256 from the 1.0 version. The period is (for `SkipNumber=0`) $10^{4682}$. For this generator we recommend using a default value of `SkipNumber=2`. The References for MIXMAX are -- GitLab