You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2019/04/13 06:30:01 UTC

svn commit: r1857443 - /subversion/trunk/subversion/include/svn_fs.h

Author: julianfoad
Date: Sat Apr 13 06:30:01 2019
New Revision: 1857443

URL: http://svn.apache.org/viewvc?rev=1857443&view=rev
Log:
Fix Doxygen mark-up, following r1857435.

Modified:
    subversion/trunk/subversion/include/svn_fs.h

Modified: subversion/trunk/subversion/include/svn_fs.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_fs.h?rev=1857443&r1=1857442&r2=1857443&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_fs.h (original)
+++ subversion/trunk/subversion/include/svn_fs.h Sat Apr 13 06:30:01 2019
@@ -3506,7 +3506,7 @@ svn_fs_info_dup(const void *info,
 /**
  * A structure specifying the filesystem-specific input/output operation.
  *
- * @see #svn_fs_ioctl
+ * @see svn_fs_ioctl()
  *
  * @since New in 1.13.
  */
@@ -3517,7 +3517,7 @@ typedef struct svn_fs_ioctl_code_t
 } svn_fs_ioctl_code_t;
 
 /**
- * A convenience macro to declare svn_fs_ioctl_code_t codes.
+ * A convenience macro to declare #svn_fs_ioctl_code_t codes.
  *
  * @since New in 1.13.
  */
@@ -3525,16 +3525,16 @@ typedef struct svn_fs_ioctl_code_t
   static const svn_fs_ioctl_code_t name = { fs_type, code }
 
 /**
- * Issue a filesystem-specific input/output operation defined by @ctlcode
+ * Issue a filesystem-specific input/output operation defined by @a ctlcode
  * (usually, a low-level operation which cannot be expressed by other
- * filesystem APIs).  If @fs is @c NULL, issue a global operation.
- * If @fs is not @c NULL, issue an operation that is specific to this
+ * filesystem APIs).  If @a fs is @c NULL, issue a global operation.
+ * If @a fs is not @c NULL, issue an operation that is specific to this
  * filesystem instance.
  *
  * If the filesystem cannot handle this ioctl code, return the
  * #SVN_ERR_FS_UNRECOGNIZED_IOCTL_CODE error.
  *
- * Allocate the result in @result_pool, use @a scratch_pool for temporary
+ * Allocate the result in @a result_pool, use @a scratch_pool for temporary
  * allocations.
  *
  * @see #svn_fs_ioctl_code_t