summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-09-06 21:00:31 +0000
committerCarl Hetherington <carl@carlh.net>2010-09-06 21:00:31 +0000
commitbac638935e82dc97d403fd66ad98e26e22ca7a56 (patch)
tree68c68ff6d683aa111df12158f91ae8e3cdc4a1ab /libs
parente1106c39b86fdb4e1ddca0972fea308c5ed849cc (diff)
Fix comment.
git-svn-id: svn://localhost/ardour2/branches/3.0@7746 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/io.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index d6b5b1e7db..ed2b23f7ee 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -267,9 +267,9 @@ IO::remove_port (Port* port, void* src)
return -1;
}
-/** Add an output port.
+/** Add a port.
*
- * @param destination Name of input port to connect new port to.
+ * @param destination Name of port to connect new port to.
* @param src Source for emitted ConfigurationChanged signal.
* @param type Data type of port. Default value (NIL) will use this IO's default type.
*/
@@ -291,7 +291,7 @@ IO::add_port (string destination, void* src, DataType type)
{
Glib::Mutex::Lock lm (io_lock);
- /* Create a new output port */
+ /* Create a new port */
string portname = build_legal_port_name (type);