summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-08-08 14:46:53 +0000
committerDavid Robillard <d@drobilla.net>2014-08-08 14:46:53 +0000
commitb05c515d0864a4b4666fafcf966958360ad9b966 (patch)
treee1bee39bc9ef8b074ce3046ee50cba7f8906f616 /src
parentdb48f02082219fca04c58112d10233b18535c134 (diff)
downloadpatchage-b05c515d0864a4b4666fafcf966958360ad9b966.tar.gz
patchage-b05c515d0864a4b4666fafcf966958360ad9b966.tar.bz2
patchage-b05c515d0864a4b4666fafcf966958360ad9b966.zip
Use Markdown in doc comments for better source readability.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5429 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/AlsaDriver.cpp4
-rw-r--r--src/Configuration.cpp2
-rw-r--r--src/Queue.hpp2
3 files changed, 3 insertions, 5 deletions
diff --git a/src/AlsaDriver.cpp b/src/AlsaDriver.cpp
index 6a1910f..641c55d 100644
--- a/src/AlsaDriver.cpp
+++ b/src/AlsaDriver.cpp
@@ -42,9 +42,7 @@ AlsaDriver::~AlsaDriver()
detach();
}
-/** Attach to ALSA.
- * @a launch_daemon is ignored, as ALSA has no daemon to launch/connect to.
- */
+/** Attach to ALSA. */
void
AlsaDriver::attach(bool /*launch_daemon*/)
{
diff --git a/src/Configuration.cpp b/src/Configuration.cpp
index 5a81327..5d84e86 100644
--- a/src/Configuration.cpp
+++ b/src/Configuration.cpp
@@ -98,7 +98,7 @@ Configuration::set_module_location(const std::string& name, ModuleType type, Coo
/** Returns whether or not this module should be split.
*
- * If nothing is known about the given module, @a default_val is returned (this is
+ * If nothing is known about the given module, `default_val` is returned (this is
* to allow driver's to request terminal ports get split by default).
*/
bool
diff --git a/src/Queue.hpp b/src/Queue.hpp
index 1043e55..136de17 100644
--- a/src/Queue.hpp
+++ b/src/Queue.hpp
@@ -118,7 +118,7 @@ Queue<T>::front() const
/** Push an item onto the back of the Queue - realtime-safe, not thread-safe.
*
- * @returns true if @a elem was successfully pushed onto the queue,
+ * @returns true if `elem` was successfully pushed onto the queue,
* false otherwise (queue is full).
*/
template <typename T>