Skip to content

Commit 579d8a6

Browse files
committed
Update Nuget readme
1 parent 999b609 commit 579d8a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Nuget/Nuget.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Any logic than can be expressed as a Flow Expression (think flow chart) may be i
1212

1313
> A Flow Expression operates on a user supplied **Context**, which is any environment that manages and provides input/content/state.
1414
>
15-
> For a Parser, the context would be a **Scanner** that manages text scanning and provides <i>Tokens</i> to operate on. A comprehensive FexScanner is provided as the default - but you can roll your own if required.
15+
> For a Parser, the context would be a **Scanner** that manages text scanning and provides *Tokens* to operate on. A comprehensive FexScanner is provided as the default - but you can roll your own if required.
16+
1617

17-
<br>
1818

1919
The following example is a complete **Expression Parser**, including evaluation and error reporting:
2020

@@ -72,7 +72,7 @@ void ExpressionEval(string calc = "9 - (5.5 + 3) * 6 - 4 / ( 9 - 1 )")
7272
}
7373
```
7474

75-
<br>
75+
7676

7777
Example **error reporting** for the expression parser above:
7878

0 commit comments

Comments
 (0)