diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2019-03-31 10:25:56 +0200 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2019-03-31 10:35:04 +0200 |
commit | 82ce22f817ba584312be4a972cdf2e1796eff150 (patch) | |
tree | c4ccaca5894e70bb2372e378291acd39b71def47 /libvaladoc | |
parent | c900b4bcd17ecbcd19dcf9bf984c8b71363cf7e7 (diff) | |
download | vala-82ce22f817ba584312be4a972cdf2e1796eff150.tar.gz |
libvaladoc: Handle missing Content.List.Bullet.ORDERED in switch
Diffstat (limited to 'libvaladoc')
-rw-r--r-- | libvaladoc/documentation/documentationparser.vala | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libvaladoc/documentation/documentationparser.vala b/libvaladoc/documentation/documentationparser.vala index ca822443e..0a5a0d04c 100644 --- a/libvaladoc/documentation/documentationparser.vala +++ b/libvaladoc/documentation/documentationparser.vala @@ -262,6 +262,8 @@ public class Valadoc.DocumentationParser : Object, ResourceLocator { return "."; case Content.List.Bullet.UNORDERED: return "*"; + case Content.List.Bullet.ORDERED: + return "#"; case Content.List.Bullet.ORDERED_NUMBER: return "1."; case Content.List.Bullet.ORDERED_LOWER_CASE_ALPHA: |