diff --git a/doxygen/Doxyfile b/doxygen/Doxyfile
index 84a0fb85d5..1c0b6796d3 100644
--- a/doxygen/Doxyfile
+++ b/doxygen/Doxyfile
@@ -228,7 +228,8 @@ TAB_SIZE = 4
# "Side Effects:". You can put \n's in the value part of an alias to insert
# newlines.
-ALIASES = "topictag{1}=\1" \
+ALIASES = "tags{1}=" \
+ "topictag{1}=\1" \
"box{1}=
- \1
- " \
"endbox=
" \
"c_void=@s_code{void}" \
diff --git a/modules/juce_core/files/juce_File.h b/modules/juce_core/files/juce_File.h
index 52ef95233f..8a77de12ef 100644
--- a/modules/juce_core/files/juce_File.h
+++ b/modules/juce_core/files/juce_File.h
@@ -648,6 +648,7 @@ public:
output.setPosition (0);
output.truncate();
...
+ }
@endcode
@returns a stream that will write to this file (initially positioned at the
diff --git a/modules/juce_core/files/juce_FileOutputStream.h b/modules/juce_core/files/juce_FileOutputStream.h
index eb73e471e8..60051b7e6d 100644
--- a/modules/juce_core/files/juce_FileOutputStream.h
+++ b/modules/juce_core/files/juce_FileOutputStream.h
@@ -53,6 +53,7 @@ public:
stream.setPosition (0);
stream.truncate();
...
+ }
@endcode