Remove markdown not recognised by GitHub

Remove `{.good}` and `{.bad}` and replace with comments.
This commit is contained in:
Jonathan B Coe 2020-06-04 13:30:29 +01:00 committed by GitHub
parent f3a418ef09
commit edd630a9ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -462,14 +462,15 @@ following remedies:
Consider the following example: Consider the following example:
```c# {.bad} ```c#
// What are these arguments? // Bad - what are these arguments?
DecimalNumber product = CalculateProduct(values, 7, false, null); DecimalNumber product = CalculateProduct(values, 7, false, null);
``` ```
versus: versus:
```c# {.good} ```c#
// Good
ProductOptions options = new ProductOptions(); ProductOptions options = new ProductOptions();
options.PrecisionDecimals = 7; options.PrecisionDecimals = 7;
options.UseCache = CacheUsage.DontUseCache; options.UseCache = CacheUsage.DontUseCache;