Skip to content

Commit

Permalink
Fix typo (Perdictor -> Predictor)
Browse files Browse the repository at this point in the history
ref #681
  • Loading branch information
dmitry-ra committed Mar 11, 2018
1 parent c450c7c commit 3d906fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide/Configs/Diagnosers.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ This diagnoser is not enabled in explicit way as the other diagnosers. You need

```cs
[HardwareCounters(HardwareCounter.BranchMispredictions, HardwareCounter.BranchInstructions)]
public class Cpu_BranchPerdictor
public class Cpu_BranchPredictor
{
private const int N = 32767;
private readonly int[] sorted, unsorted;

public Cpu_BranchPerdictor()
public Cpu_BranchPredictor()
{
var random = new Random(0);
unsorted = new int[N];
Expand Down

0 comments on commit 3d906fc

Please sign in to comment.