aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorBurdetteLamar <burdettelamar@yahoo.com>2023-08-12 17:44:38 +0100
committerPeter Zhu <peter@peterzhu.ca>2023-08-12 13:04:04 -0400
commit546c5cfe4ce1335cb45f8e7b6d6da317c61509e7 (patch)
tree9fcaf36719a09ae19eab6ddbbdd6de11f40d3ee1 /file.c
parentb18462c14be62f7572ed03dee470ffb99ae74521 (diff)
downloadruby-546c5cfe4ce1335cb45f8e7b6d6da317c61509e7.tar.gz
[DOC] Don't suppress autolinks
Diffstat (limited to 'file.c')
-rw-r--r--file.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/file.c b/file.c
index 89afe7a0d0..e753e116de 100644
--- a/file.c
+++ b/file.c
@@ -6539,11 +6539,11 @@ const char ruby_null_device[] =
*
* == Access Modes
*
- * \Methods File.new and File.open each create a \File object for a given file path.
+ * Methods File.new and File.open each create a \File object for a given file path.
*
* === \String Access Modes
*
- * \Methods File.new and File.open each may take string argument +mode+, which:
+ * Methods File.new and File.open each may take string argument +mode+, which:
*
* - Begins with a 1- or 2-character
* {read/write mode}[rdoc-ref:File@Read-2FWrite+Mode].
@@ -7179,7 +7179,7 @@ const char ruby_null_device[] =
*
* == \File \Constants
*
- * Various constants for use in \File and \IO methods
+ * Various constants for use in \File and IO methods
* may be found in module File::Constants;
* an array of their names is returned by <tt>File::Constants.constants</tt>.
*
@@ -7234,15 +7234,15 @@ const char ruby_null_device[] =
*
* _Times_
*
- * - ::atime: Returns a \Time for the most recent access to the given file.
- * - ::birthtime: Returns a \Time for the creation of the given file.
- * - ::ctime: Returns a \Time for the metadata change of the given file.
- * - ::mtime: Returns a \Time for the most recent data modification to
+ * - ::atime: Returns a Time for the most recent access to the given file.
+ * - ::birthtime: Returns a Time for the creation of the given file.
+ * - ::ctime: Returns a Time for the metadata change of the given file.
+ * - ::mtime: Returns a Time for the most recent data modification to
* the content of the given file.
- * - #atime: Returns a \Time for the most recent access to +self+.
- * - #birthtime: Returns a \Time the creation for +self+.
- * - #ctime: Returns a \Time for the metadata change of +self+.
- * - #mtime: Returns a \Time for the most recent data modification
+ * - #atime: Returns a Time for the most recent access to +self+.
+ * - #birthtime: Returns a Time the creation for +self+.
+ * - #ctime: Returns a Time for the metadata change of +self+.
+ * - #mtime: Returns a Time for the most recent data modification
* to the content of +self+.
*
* _Types_