diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2014-10-30 20:33:58 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2014-10-30 20:33:58 -0500 |
commit | 9930b416962bbf70169bc72292a44b2bef275d76 (patch) | |
tree | 5ae757445c5281d932401b779560aabaf4791c95 | |
parent | 02e81acfe1dc548553082672a2d04f826a0812e6 (diff) | |
parent | 3f69c38ba3594eb93d86d1f4b2456241ffe9b14a (diff) |
Merge pull request #836 from pallxk/master
[matlab/en] Fix block comment syntax.
-rw-r--r-- | matlab.html.markdown | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/matlab.html.markdown b/matlab.html.markdown index 121f16de..2b9077d5 100644 --- a/matlab.html.markdown +++ b/matlab.html.markdown @@ -15,10 +15,12 @@ If you have any feedback please feel free to reach me at ```matlab % Comments start with a percent sign. -%{ Multi line comments look +%{ +Multi line comments look something like -this %} +this +%} % commands can span multiple lines, using '...': a = 1 + 2 + ... |