]> git.sesse.net Git - vlc/commitdiff
Use @see instead of @ref
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 22 Feb 2009 09:57:15 +0000 (11:57 +0200)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sun, 22 Feb 2009 14:34:04 +0000 (16:34 +0200)
bindings/cil/src/instance.cs

index 6692a7ebb9c7dc47f95b975b8d26aca429ed78a6..901c4409b379bfeaafe2010c5f3c366416ef117a 100644 (file)
@@ -193,8 +193,6 @@ namespace VideoLAN.LibVLC
  * First, you need to create a VLC instance. This will load and setup the
  * native VLC runtime, the VLC configuration, the list of available plugins,
  * the platform adaptation and the VLC log messages and objects subsystems
- * (see \ref VideoLAN::LibVLC::VLC for details).
- *
  * @code
  * using System;
  * using VideoLAN.LibVLC;
@@ -211,15 +209,15 @@ namespace VideoLAN.LibVLC
  * string[] args = new string[]{ "-v", "--ignore-config" };
  * VLC vlc = new VLC(args);
  * @endcode
+ * @see VideoLAN::LibVLC::VLC
  *
  * To play media, you need a media and a player.
- * See the \ref VideoLAN::LibVLC::Media
- * and \ref VideoLAN::LibVLC::Player classes for details.
  * @code
  * Media media = new Media(vlc, "http://www.example.com/video.ogv");
  * Player player = new Player(media);
  * player.Play();
  * @endcode
+ * @see VideoLAN::LibVLC::Media @see VideoLAN::LibVLC::Player
  *
  * All these objects use unmanaged resources.
  * They all implement the IDisposeable interface.