aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-06-22 19:40:51 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-06-22 19:40:51 +0530
commit95f827f9109a6f5d903496788326de1c0f9121c5 (patch)
tree7e6b5c8def8b8cd787a3836a9a63f94ea9267a10 /railties/guides
parent3cfbf544eacaecea9b23a7fd02b071dd39b5ddf7 (diff)
downloadrails-95f827f9109a6f5d903496788326de1c0f9121c5.tar.gz
rails-95f827f9109a6f5d903496788326de1c0f9121c5.tar.bz2
rails-95f827f9109a6f5d903496788326de1c0f9121c5.zip
font style changes in perf guide
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/performance_testing.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/performance_testing.textile b/railties/guides/source/performance_testing.textile
index a4187a3135..dbe6f97f5c 100644
--- a/railties/guides/source/performance_testing.textile
+++ b/railties/guides/source/performance_testing.textile
@@ -151,7 +151,7 @@ Performance tests can be run in two modes: Benchmarking and Profiling.
h5. Benchmarking
-Benchmarking makes it easy to quickly gather a few metrics about each test tun. By default, each test case is run +4 times+ in benchmarking mode.
+Benchmarking makes it easy to quickly gather a few metrics about each test tun. By default, each test case is run *4 times* in benchmarking mode.
To run performance tests in benchmarking mode:
@@ -161,7 +161,7 @@ $ rake test:benchmark
h5. Profiling
-Profiling allows you to make an in-depth analysis of each of your tests by using an external profiler. Depending on your Ruby interpreter, this profiler can be native (Rubinius, JRuby) or not (MRI, which uses RubyProf). By default, each test case is run +1 time+ in profiling mode.
+Profiling allows you to make an in-depth analysis of each of your tests by using an external profiler. Depending on your Ruby interpreter, this profiler can be native (Rubinius, JRuby) or not (MRI, which uses RubyProf). By default, each test case is run *once* in profiling mode.
To run performance tests in profiling mode: