Skip to content

Commit 988363a

Browse files
author
Michaël Catanzariti
authored
Fixed presentation in REDME.md
1 parent 76bde47 commit 988363a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Dahomey.ExpressionEvaluator code does not trigger any AOT complilation. It means
1010
## Building
1111
Supports Visual Studio 2017 only
1212

13-
# Examples
14-
## Parse a numeric expression
13+
## Examples
14+
### Parse a numeric expression
1515
```csharp
1616
ExpressionParser parser = new ExpressionParser();
1717
parser.RegisterVariable<int>("a");
@@ -26,7 +26,7 @@ The result will be:
2626
3
2727
```
2828

29-
## Parse a numeric expression with member access
29+
### Parse a numeric expression with member access
3030
```csharp
3131
class A
3232
{
@@ -51,7 +51,7 @@ The result will be:
5151
13
5252
```
5353

54-
## Parse a numeric expression with array or list access
54+
### Parse a numeric expression with array or list access
5555
```csharp
5656
ExpressionParser parser = new ExpressionParser();
5757
parser.RegisterVariable<List<int>>("a");
@@ -66,7 +66,7 @@ The result will be:
6666
3
6767
```
6868

69-
## Parse a numeric expression with function access
69+
### Parse a numeric expression with function access
7070
```csharp
7171
Func<double, double> func = n => Math.Cos(n);
7272
ExpressionParser parser = new ExpressionParser();

0 commit comments

Comments
 (0)