summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-26 14:06:27 -0400
committerDavid Robillard <d@drobilla.net>2024-10-26 14:06:27 -0400
commitfb86a60b41ef9312fb356f9b16ad98c603fce3ab (patch)
tree777f55409d5f4868ec96448a4235052cd78c91de /include
parentcf83b3a2abe815002451908d6a826b98b8679f9e (diff)
downloadingen-fb86a60b41ef9312fb356f9b16ad98c603fce3ab.tar.gz
ingen-fb86a60b41ef9312fb356f9b16ad98c603fce3ab.tar.bz2
ingen-fb86a60b41ef9312fb356f9b16ad98c603fce3ab.zip
Fix line wrapping in commentsHEADmain
Diffstat (limited to 'include')
-rw-r--r--include/ingen/Module.hpp4
-rw-r--r--include/ingen/Resource.hpp4
-rw-r--r--include/ingen/Serialiser.hpp4
-rw-r--r--include/ingen/client/SigClientInterface.hpp2
4 files changed, 7 insertions, 7 deletions
diff --git a/include/ingen/Module.hpp b/include/ingen/Module.hpp
index 90f2f930..c9929c0a 100644
--- a/include/ingen/Module.hpp
+++ b/include/ingen/Module.hpp
@@ -46,8 +46,8 @@ public:
/** Library implementing this module.
*
- * This is managed by the World and not this class, since closing the library
- * in this destructor could possibly reference code from the library
+ * This is managed by the World and not this class, since closing the
+ * library in this destructor could possibly reference code from the library
* afterwards and cause a segfault on exit.
*/
std::unique_ptr<Library> library;
diff --git a/include/ingen/Resource.hpp b/include/ingen/Resource.hpp
index 8b96a27b..3ba65dda 100644
--- a/include/ingen/Resource.hpp
+++ b/include/ingen/Resource.hpp
@@ -175,8 +175,8 @@ public:
/** Get the ingen type from a set of Properties.
*
- * If some coherent ingen type is found, true is returned and the appropriate
- * output parameter set to true. Otherwise false is returned.
+ * If some coherent ingen type is found, true is returned and the
+ * appropriate output parameter set to true. Otherwise false is returned.
*/
static bool type(const URIs& uris,
const Properties& properties,
diff --git a/include/ingen/Serialiser.hpp b/include/ingen/Serialiser.hpp
index f7f04317..5b70c78b 100644
--- a/include/ingen/Serialiser.hpp
+++ b/include/ingen/Serialiser.hpp
@@ -56,8 +56,8 @@ public:
*
* This must be called before any serializing methods.
*
- * The results of the serialization will be returned by the finish() method after
- * the desired objects have been serialised.
+ * The results of the serialization will be returned by the finish() method
+ * after the desired objects have been serialised.
*
* All serialized paths will have the root path chopped from their prefix
* (therefore all serialized paths must be descendants of the root)
diff --git a/include/ingen/client/SigClientInterface.hpp b/include/ingen/client/SigClientInterface.hpp
index 6bff2e33..955c6dcd 100644
--- a/include/ingen/client/SigClientInterface.hpp
+++ b/include/ingen/client/SigClientInterface.hpp
@@ -45,7 +45,7 @@ public:
INGEN_SIGNAL(message, void, Message)
- /** Fire pending signals. Only does anything on derived classes (that may queue) */
+ /** Fire pending signals (for derived classes that may queue). */
virtual bool emit_signals() { return false; }
protected: