Skip to content

Commit

Permalink
Remove empty pawndoc blocks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Y_Less committed Mar 7, 2022
1 parent b5e33f8 commit 7c49c92
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,15 +521,15 @@ this can be exploited to link many comments together by ensuring that EVERY line
```pawn
#if SOME_CHECK
/// The documentation for <c>Func1</c>
stock Func1() ///
{ ///
} ///
///
stock Func1() /// <p/>
{ /// <p/>
} /// <p/>
/// <p/>
/// The documentation for <c>Func1</c>
stock Func2() ///
{ ///
} ///
#else ///
stock Func2() /// <p/>
{ /// <p/>
} /// <p/>
#else /// <p/>
native UnusedForHidingDocumentation();
#endif
```
Expand Down Expand Up @@ -663,15 +663,15 @@ compiler. From *sscanf2.inc*:

```pawn
///
/// <p/>
/// <library>sscanf</library>
/// <remarks>
/// Generic initialisation code called from a range of different init publics.
/// </remarks>
///
/// <p/>
/// <!--
#if !defined __PawnBuild ///
forward SSCANF_RunInit(); ///
#if !defined __PawnBuild /// <p/>
forward SSCANF_RunInit(); /// <p/>
/// There's a bug in the old compiler with the pawndoc generation for
/// functions containing <c>state</c>. This little trick starts an XML
/// comment at the end of the documentation <c>SSCANF_RunInit</c> and
Expand Down

0 comments on commit 7c49c92

Please sign in to comment.