Fix MD040 warnings
The following warnings are generated by using markdownlint analysis:
```
MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"]
```
Refer to markdown-lint [1] to fix MD040
[1]: https://github.com/updownpress/markdown-lint/blob/master/rules/040-fenced-code-language.md
Signed-off-by: George Liu <liuxiwei@ieisystem.com>
Change-Id: I942310b9d6bc3587d3cfe16c13d53d27d64fada4
diff --git a/README.md b/README.md
index 8ee0e52..21681ca 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@
For a standard release build, you want something like:
-```
+```sh
meson setup -Dexamples=false -Dtests=disabled builddir
ninja -C builddir
ninja -C builddir install
@@ -20,7 +20,7 @@
For a test / debug build, a typical configuration is
-```
+```sh
meson setup -Dtests=enabled builddir
meson test -C builddir
```