Skip to content

Commit 9d38d87

Browse files
committed
Doc changes
1 parent 5f71398 commit 9d38d87

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

DependencyInjection/Configuration.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,13 @@ public function getConfigTreeBuilder()
7373
->end()
7474
->arrayNode('toolbar')
7575
->addDefaultsIfNotSet()
76-
->info('Extend the debug profiler with inforation about requests. This could only be active when the kernel is in debug mode.')
76+
->info('Extend the debug profiler with inforation about requests.')
7777
->children()
78-
->enumNode('enabled')->values([true, false, 'auto'])->defaultValue('auto')->end()
78+
->enumNode('enabled')
79+
->info('If "auto" (default) the toolbar is active when kernel.debug is true. You can force the toolbar on and off by changing this option.')
80+
->values([true, false, 'auto'])
81+
->defaultValue('auto')
82+
->end()
7983
->scalarNode('formatter')->defaultNull()->end()
8084
->end()
8185
->end()

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ If you need a more custom setup, define the services in your application configu
6060

6161
```yaml
6262
httplug:
63-
clients:
63+
clients:
6464
acme_client: # This is the name of the client
6565
factory: 'httplug.factory.guzzle6'
6666

Resources/views/webprofiler.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
{% endblock %}
3939

4040
{% block panel %}
41-
<h2>Httplug</h2>
41+
<h2>HTTPlug</h2>
4242
{% if (collector.failedRequests|length > 0) %}
4343
<h3>Failed requests</h3>
4444
{{ macro.printMessages(collector.failedRequests) }}

0 commit comments

Comments
 (0)