From c9b894241abe9ca1acf513dccfa89695d84eb5bf Mon Sep 17 00:00:00 2001 From: Petrik Date: Mon, 15 May 2023 10:56:00 +0200 Subject: [PATCH] Fix 'View Timings from Instrumentation' guides heading [ci-skip] Fix the capitalization. See: Seehttps://edgeguides.rubyonrails.org/ruby_on_rails_guides_guidelines.html#headings Also remove an extraneous linebreak. --- guides/source/active_support_instrumentation.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/guides/source/active_support_instrumentation.md b/guides/source/active_support_instrumentation.md index 1ecd2132b56..53e93364a9a 100644 --- a/guides/source/active_support_instrumentation.md +++ b/guides/source/active_support_instrumentation.md @@ -96,12 +96,11 @@ end [`ActiveSupport::Notifications.monotonic_subscribe`]: https://api.rubyonrails.org/classes/ActiveSupport/Notifications.html#method-c-monotonic_subscribe [`ActiveSupport::Notifications.subscribe`]: https://api.rubyonrails.org/classes/ActiveSupport/Notifications.html#method-c-subscribe -View timings from instrumentation in your browser ------------------------ +View Timings from Instrumentation in Your Browser +------------------------------------------------- Rails implements the [Server Timing](https://www.w3.org/TR/server-timing/) standard to make timing information available in the web browser. To enable, edit your environment configuration (usually `development.rb` as this is most-used in development) to include the following: - ```ruby config.server_timing = true ```