Skip to content
Merged

Typos #553

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion graf2d/graf/src/TTF.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
8 changes: 4 additions & 4 deletions graf2d/postscript/src/TPostScript.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
4 changes: 2 additions & 2 deletions math/mathcore/inc/Math/MixMaxEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down