[前][次][番号順一覧][スレッド一覧]

ruby-changes:74391

From: Peter <ko1@a...>
Date: Tue, 8 Nov 2022 09:47:45 +0900 (JST)
Subject: [ruby-changes:74391] 7456647eff (master): [DOC] Properly number the list in building_ruby.md

https://git.ruby-lang.org/ruby.git/commit/?id=7456647eff

From 7456647effc8c0d0fd85eb16b47635b96d2401df Mon Sep 17 00:00:00 2001
From: Peter Zhu <peter@p...>
Date: Mon, 7 Nov 2022 19:47:12 -0500
Subject: [DOC] Properly number the list in building_ruby.md

---
 doc/contributing/building_ruby.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/doc/contributing/building_ruby.md b/doc/contributing/building_ruby.md
index 4fbb4bd2cc..f7b489c4a9 100644
--- a/doc/contributing/building_ruby.md
+++ b/doc/contributing/building_ruby.md
@@ -10,7 +10,7 @@ https://github.com/ruby/ruby/blob/trunk/doc/contributing/building_ruby.md#L10
     * gperf - 3.0.3 or later
     * ruby - 2.7 or later
 
-1. Install optional, recommended dependencies:
+2. Install optional, recommended dependencies:
 
     * OpenSSL/LibreSSL
     * readline/editline (libedit)
@@ -20,19 +20,19 @@ https://github.com/ruby/ruby/blob/trunk/doc/contributing/building_ruby.md#L20
     * libexecinfo (FreeBSD)
     * rustc - 1.58.1 or later (if you wish to build [YJIT](/doc/yjit/yjit.md))
 
-1. Checkout the CRuby source code:
+3. Checkout the CRuby source code:
 
     ```
     git clone https://github.com/ruby/ruby.git
     ```
 
-1. Generate the configure file:
+4. Generate the configure file:
 
     ```
     ./autogen.sh
     ```
 
-1. Create a `build` directory outside of the source directory:
+5. Create a `build` directory outside of the source directory:
 
     ```
     mkdir build && cd build
@@ -40,13 +40,13 @@ https://github.com/ruby/ruby/blob/trunk/doc/contributing/building_ruby.md#L40
 
     While it's not necessary to build in a separate directory, it's good practice to do so.
 
-1. We'll install Ruby in `~/.rubies/ruby-master`, so create the directory:
+6. We'll install Ruby in `~/.rubies/ruby-master`, so create the directory:
 
     ```
     mkdir ~/.rubies
     ```
 
-1. Run configure:
+7. Run configure:
 
     ```
     ../configure --prefix="${HOME}/.rubies/ruby-master"
@@ -54,7 +54,7 @@ https://github.com/ruby/ruby/blob/trunk/doc/contributing/building_ruby.md#L54
 
     - If you are frequently building Ruby, add the `--disable-install-doc` flag to not build documentation which will speed up the build process.
 
-1. Build Ruby:
+8. Build Ruby:
 
     ```
     make install
@@ -77,7 +77,7 @@ https://github.com/ruby/ruby/blob/trunk/doc/contributing/building_ruby.md#L77
 
         Remember to delete your `build` directory and start again from the configure step.
 
-6. [Run tests](testing_ruby.md) to confirm your build succeeded.
+9. [Run tests](testing_ruby.md) to confirm your build succeeded.
 
 ### Unexplainable Build Errors
 
-- 
cgit v1.2.3


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]