Skip to content

Commit 1c55972

Browse files
Fix links in docs
1 parent ff6e8d9 commit 1c55972

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</h3>
1717

1818
<h3 align="center">
19-
<a href="#Features">Features</a>
19+
<a href="#features">Features</a>
2020
<span> · </span>
2121
<a href="https://benchmarkdotnet.org/articles/guides/getting-started.html">Getting started</a>
2222
<span> · </span>
@@ -27,12 +27,12 @@
2727

2828
**BenchmarkDotNet** helps you to transform methods into benchmarks, track their performance, and share reproducible measurement experiments.
2929
It's no harder than writing unit tests!
30-
Under the hood, it performs a lot of [magic](#Automation) that guarantees [reliable and precise](#Reliability) results thanks to the [perfolizer](https://github.com/AndreyAkinshin/perfolizer) statistical engine.
30+
Under the hood, it performs a lot of [magic](#automation) that guarantees [reliable and precise](#reliability) results thanks to the [perfolizer](https://github.com/AndreyAkinshin/perfolizer) statistical engine.
3131
BenchmarkDotNet protects you from popular benchmarking mistakes and warns you if something is wrong with your benchmark design or obtained measurements.
32-
The results are presented in a [user-friendly](#Friendliness) form that highlights all the important facts about your experiment.
32+
The results are presented in a [user-friendly](#friendliness) form that highlights all the important facts about your experiment.
3333
The library is adopted by [14300+ projects](#who-uses-benchmarkdotnet) including .NET Runtime and supported by the [.NET Foundation](https://dotnetfoundation.org).
3434

35-
It's [easy](#Simplicity) to start writing benchmarks, check out an example
35+
It's [easy](#simplicity) to start writing benchmarks, check out an example
3636
(copy-pastable version is [here](https://benchmarkdotnet.org/articles/guides/getting-started.html)):
3737

3838
```cs

docs/_changelog/header/v0.11.4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* **Features**
66
* **BenchmarkDotNet as a global tool**: a new global tool which allows you to run benchmarks from given library.
77
Now you can run benchmarks from the command line via `dotnet benchmark`.
8-
You can find more information about it in the [documentation](xref:docs.tool)
8+
You can find more information about it in the documentation
99
[#1006](https://github.com/dotnet/BenchmarkDotNet/pull/1006)
1010
[#213](https://github.com/dotnet/BenchmarkDotNet/issues/213)
1111
* **InProcessEmitToolchain**: new, full-featured InProcess toolchain which allows executing benchmarks in the current process

docs/_changelog/header/v0.13.2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Moreover, [ClrMD](https://github.com/microsoft/clrmd) was updated to v2 ([#2040]
227227

228228
### Docs and Samples improvements
229229

230-
Big thanks to [@SnakyBeaky](https://github.com/SnakyBeaky), [@Distinctlyminty](https://github.com/Distinctlyminty), [@asaf92](asaf92), [@adamsitnik](https://github.com/adamsitnik) and [@eiriktsarpalis](https://github.com/eiriktsarpalis) who have improved our docs, samples and error messages!
230+
Big thanks to [@SnakyBeaky](https://github.com/SnakyBeaky), [@Distinctlyminty](https://github.com/Distinctlyminty), [@asaf92](https://github.com/asaf92), [@adamsitnik](https://github.com/adamsitnik) and [@eiriktsarpalis](https://github.com/eiriktsarpalis) who have improved our docs, samples and error messages!
231231

232232
[#1776](https://github.com/dotnet/BenchmarkDotNet/pull/1776), [#1797](https://github.com/dotnet/BenchmarkDotNet/pull/1797), [#1850](https://github.com/dotnet/BenchmarkDotNet/pull/1850), [#1861](https://github.com/dotnet/BenchmarkDotNet/pull/1861), [#1939](https://github.com/dotnet/BenchmarkDotNet/pull/1939), [#1974](https://github.com/dotnet/BenchmarkDotNet/pull/1974), [#1997](https://github.com/dotnet/BenchmarkDotNet/pull/1997), [#2042](https://github.com/dotnet/BenchmarkDotNet/pull/2042), [#2050](https://github.com/dotnet/BenchmarkDotNet/pull/2050), [#2068](https://github.com/dotnet/BenchmarkDotNet/pull/2068).
233233

docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ title: Home
1313
[![Downloads](https://img.shields.io/nuget/dt/benchmarkdotnet.svg)](https://www.nuget.org/packages/BenchmarkDotNet/)
1414
[![Stars](https://img.shields.io/github/stars/dotnet/BenchmarkDotNet?color=brightgreen)](https://github.com/dotnet/BenchmarkDotNet/stargazers)
1515
[![Gitter](https://img.shields.io/gitter/room/dotnet/BenchmarkDotNet?color=yellow)](https://gitter.im/dotnet/BenchmarkDotNet)
16-
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.md)
16+
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/dotnet/BenchmarkDotNet/blob/master/LICENSE.md)
1717
[![GitHub](https://img.shields.io/badge/source%20code-GitHub-informational)](https://github.com/dotnet/BenchmarkDotNet)
1818
[![Twitter](https://img.shields.io/twitter/follow/BenchmarkDotNet?style=social)](https://twitter.com/BenchmarkDotNet)
1919

2020
</h3>
2121

2222
<h3 align="center">
23-
<a href="#Features">Features</a>
23+
<a href="#features">Features</a>
2424
<span> · </span>
2525
<a href="https://benchmarkdotnet.org/articles/guides/getting-started.html">Getting started</a>
2626
<span> · </span>
@@ -31,12 +31,12 @@ title: Home
3131

3232
**BenchmarkDotNet** helps you to transform methods into benchmarks, track their performance, and share reproducible measurement experiments.
3333
It's no harder than writing unit tests!
34-
Under the hood, it performs a lot of [magic](#Automation) that guarantees [reliable and precise](#Reliability) results thanks to the [perfolizer](https://github.com/AndreyAkinshin/perfolizer) statistical engine.
34+
Under the hood, it performs a lot of [magic](#automation) that guarantees [reliable and precise](#reliability) results thanks to the [perfolizer](https://github.com/AndreyAkinshin/perfolizer) statistical engine.
3535
BenchmarkDotNet protects you from popular benchmarking mistakes and warns you if something is wrong with your benchmark design or obtained measurements.
36-
The results are presented in a [user-friendly](#Friendliness) form that highlights all the important facts about your experiment.
36+
The results are presented in a [user-friendly](#friendliness) form that highlights all the important facts about your experiment.
3737
The library is adopted by [14300+ projects](#who-uses-benchmarkdotnet) including .NET Runtime and supported by the [.NET Foundation](https://dotnetfoundation.org).
3838

39-
It's [easy](#Simplicity) to start writing benchmarks, check out an example
39+
It's [easy](#simplicity) to start writing benchmarks, check out an example
4040
(copy-pastable version is [here](https://benchmarkdotnet.org/articles/guides/getting-started.html)):
4141

4242
```cs

0 commit comments

Comments
 (0)