diff options
author | David Robillard <d@drobilla.net> | 2014-08-08 14:46:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-08 14:46:53 +0000 |
commit | 70bf3d69344122988fc7ffff7d88a21c9bd00896 (patch) | |
tree | 52975cf7ec48710fa7e2bc2ee9c5a26f8941f7d1 /src/client | |
parent | ea8f653960d5b3a1fe6012f57cbfadd85a1ef68c (diff) | |
download | ingen-70bf3d69344122988fc7ffff7d88a21c9bd00896.tar.gz ingen-70bf3d69344122988fc7ffff7d88a21c9bd00896.tar.bz2 ingen-70bf3d69344122988fc7ffff7d88a21c9bd00896.zip |
Use Markdown in doc comments for better source readability.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5429 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/ObjectModel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/ObjectModel.cpp b/src/client/ObjectModel.cpp index 76ae5080..7efa8a9b 100644 --- a/src/client/ObjectModel.cpp +++ b/src/client/ObjectModel.cpp @@ -73,10 +73,10 @@ ObjectModel::polyphonic() const return (polyphonic.is_valid() && polyphonic.get<int32_t>()); } -/** Merge the data of @a model with self, as much as possible. +/** Merge the data of `o` with self, as much as possible. * * This will merge the two models, but with any conflict take the value in - * @a o as correct. The paths of the two models MUST be equal. + * `o` as correct. The paths of the two models MUST be equal. */ void ObjectModel::set(SPtr<ObjectModel> o) |