diff options
author | luz.paz <luzpaz@users.noreply.github.com> | 2018-09-15 08:26:20 -0400 |
---|---|---|
committer | William S Fulton <wsf@fultondesigns.co.uk> | 2018-09-19 20:29:14 +0100 |
commit | ed28e7cbe29f203fabefd8ad1ffec4d43a5bcff8 (patch) | |
tree | 3534ef0e1cf6a3b06b00e023a12c1cddefd6e1d1 /Examples/test-suite/doxygen_misc_constructs.i | |
parent | ad7b591d24be03fad41ee0f2057931739fca153c (diff) | |
download | swig-ed28e7cbe29f203fabefd8ad1ffec4d43a5bcff8.tar.gz |
Misc. typo and whitespace fixes
Found via `codespell -q 3 -L "uint,bae,objext,cmo,goin,struc,ois,upto"`
whitespaces were unintentionally fixed due to my editors settings.
Rebased patch #1327
Diffstat (limited to 'Examples/test-suite/doxygen_misc_constructs.i')
-rw-r--r-- | Examples/test-suite/doxygen_misc_constructs.i | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/Examples/test-suite/doxygen_misc_constructs.i b/Examples/test-suite/doxygen_misc_constructs.i index 461415316..c95e85683 100644 --- a/Examples/test-suite/doxygen_misc_constructs.i +++ b/Examples/test-suite/doxygen_misc_constructs.i @@ -10,16 +10,16 @@ // Tag '@endink' must be recognized even if it is not // followed by whitespace. - /** Tag endlink must be recognized also when followed by nonspace charater. + /** Tag endlink must be recognized also when followed by nonspace character. * * @link Connection::getId() @endlink<br> */ - + char g_counter; - /** + /** Tag endlink must be recognized also when it is the last token - in the commment. + in the comment. @link Connection::getId() @endlink<br> @link debugIdeTraceProfilerCoverageSample.py Python example. @endlink @@ -27,7 +27,7 @@ int g_zipCode; - // Paramter 'isReportSize' must appear in comment of the overload, which + // Parameter 'isReportSize' must appear in comment of the overload, which // has it. Empty line before link must be preserved. /** * Returns address of file line. @@ -38,20 +38,20 @@ * * @link Connection::getId() @endlink <br> */ - void getAddress(int &fileName, - int line, + void getAddress(int &fileName, + int line, bool isGetSize = false) {} // The first comment must be ignored. - /** + /** * \defgroup icFacade isystem.connect Facade * * This page shows the core classes, which can be used to control * all aspects of winIDEA, for example: debugging, analyzers, IO module, ... */ - /** - * This class contains information for connection to winIDEA. Its methods + /** + * This class contains information for connection to winIDEA. Its methods * return reference to self, so we can use it like this: * <pre> * CConnectionConfig config = new CConnectionConfig(); @@ -70,7 +70,7 @@ // Text after '\c' must be kept unchanged in Python. /** - * Determines how long the \c isystem.connect should wait for running + * Determines how long the \c isystem.connect should wait for running * instances to respond. Only one of \c lfWaitXXX flags from IConnect::ELaunchFlags * may be specified. */ @@ -84,11 +84,11 @@ */ int getConnection() {return 3;} - // the follwing must produce no comment in wrapper + // the following must produce no comment in wrapper /*******************************************************************/ char getFirstLetter() {return 'a';} - + /** * Class description. */ @@ -119,6 +119,6 @@ void showList() { } #include "doxygen_misc_constructs.h" - + %} %include "doxygen_misc_constructs.h" |