From df1887414a0b7efb19189788629eedcfd790c7e3 Mon Sep 17 00:00:00 2001 From: Jun Aruga Date: Fri, 13 Oct 2023 16:54:57 +0200 Subject: [PATCH] [DOC] testing_ruby.md: Remove the command prompt '$ ` aligning with other parts. Remove the command prompt '$ ` aligning with other parts in the document. --- doc/contributing/testing_ruby.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/contributing/testing_ruby.md b/doc/contributing/testing_ruby.md index b8f3c004c9..93dff7cd4e 100644 --- a/doc/contributing/testing_ruby.md +++ b/doc/contributing/testing_ruby.md @@ -82,7 +82,7 @@ We can run any of the make scripts [in parallel](building_ruby.md#label-Running+ We can display the help of the `TESTS` option: ``` - $ make test-all TESTS=--help + make test-all TESTS=--help ``` If we would like to run both the `test/` and `bootstraptest/` test suites, we can run @@ -140,7 +140,7 @@ We can run any of the make scripts [in parallel](building_ruby.md#label-Running+ To run a specific bundler spec file, we can use `BUNDLER_SPECS` as follows: ``` - $ make test-bundler BUNDLER_SPECS=commands/exec_spec.rb + make test-bundler BUNDLER_SPECS=commands/exec_spec.rb ``` ## Troubleshooting