Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mikkrg@microsoft.com>2018-01-04 14:49:04 +0300
committerMike Krüger <mikkrg@microsoft.com>2018-01-04 14:49:04 +0300
commit1d7812a5e7e75c34bb40b3664b2cbb653c8e9255 (patch)
tree21e0e4dae35bbb19e0162a507023d6ee16b1308d /main/src/addins/MonoDevelop.DocFood
parent15b581cc3b0a2ad69abaa0db46d884a16a3f612d (diff)
Fixed '530536 - Error in DocFood'
Was only an error in the log file caused by the nested if not statement. There was only 1 case in the whole file so I just restructured the xml.
Diffstat (limited to 'main/src/addins/MonoDevelop.DocFood')
-rw-r--r--main/src/addins/MonoDevelop.DocFood/DocFood.config.xml9
1 files changed, 3 insertions, 6 deletions
diff --git a/main/src/addins/MonoDevelop.DocFood/DocFood.config.xml b/main/src/addins/MonoDevelop.DocFood/DocFood.config.xml
index 8f99de3c5a..ac4d641b25 100644
--- a/main/src/addins/MonoDevelop.DocFood/DocFood.config.xml
+++ b/main/src/addins/MonoDevelop.DocFood/DocFood.config.xml
@@ -347,15 +347,12 @@
<Case wordCount="1">
<If paramCount="0">
<Section name="summary">${FirstAsVerb} this instance.</Section>
- <IfNot returns="void">
- <Section name="returns">The ${AllWords}.</Section>
- </IfNot>
</If>
<IfNot paramCount="0">
<Section name="summary">${FirstAsVerb} the specified ${ParameterList}.</Section>
- <IfNot returns="void">
- <Section name="returns">The ${AllWords}.</Section>
- </IfNot>
+ </IfNot>
+ <IfNot returns="void">
+ <Section name="returns">The ${AllWords}.</Section>
</IfNot>
</Case>
<Case endsWith="At,Between">