Skip to content

Commit 4f36484

Browse files
committedJul 21, 2018
Issue #2831282 Capitalization cleanup.
1 parent f1ae71d commit 4f36484

7 files changed

+9
-11
lines changed
 

‎content_entity_example/content_entity_example.links.menu.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# Define the menu links for this module
22

33
entity.content_entity_example_contact.collection:
4-
title: 'Content Entity Example: Contacts listing'
4+
title: 'Content Entity Example'
55
route_name: entity.content_entity_example_contact.collection
66
description: 'List contacts'
7-
weight: 10
87
content_entity_example_contact.admin.structure.settings:
98
title: 'Contact settings'
109
description: 'Configure contact entity'

‎content_entity_example/tests/src/Functional/ContentEntityExampleTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ public function testContentEntityExample() {
3636
]);
3737

3838
// Anonymous User should not see the link to the listing.
39-
$assert->pageTextNotContains('Content Entity Example: Contacts listing');
39+
$assert->pageTextNotContains('Content Entity Example');
4040

4141
$this->drupalLogin($web_user);
4242

4343
// Web_user user has the right to view listing.
44-
$assert->linkExists('Content Entity Example: Contacts listing');
44+
$assert->linkExists('Content Entity Example');
4545

46-
$this->clickLink('Content Entity Example: Contacts listing');
46+
$this->clickLink('Content Entity Example');
4747

4848
// WebUser can add entity content.
4949
$assert->linkExists('Add contact');
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
email_example.description:
2-
title: 'E-mail Example: Contact Form'
2+
title: 'E-mail Example'
33
description: 'Callback for generating form.'
44
route_name: email_example.description

‎render_example/render_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Render example
1+
name: Render Example
22
type: module
33
description: Provides examples demonstrating Drupal's Render API.
44
package: Example modules

‎render_example/render_example.links.menu.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ render_example.description:
55
expanded: TRUE
66

77
render_example.arrays:
8-
title: Building Render Arrays
8+
title: Building render arrays
99
description: Building render arrays in controllers.
1010
route_name: render_example.arrays
1111
parent: render_example.description
1212
weight: -9
1313

1414
render_example.altering:
15-
title: Altering Render Arrays
15+
title: Altering render arrays
1616
description: Using hooks and callbacks to alter render arrays.
1717
route_name: render_example.altering
1818
parent: render_example.description

‎session_example/session_example.info.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Session example'
1+
name: 'Session Example'
22
type: module
33
description: 'An example of how to use session in Drupal 8.'
44
package: Example modules

‎session_example/session_example.links.menu.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ session_example.form:
44
title: 'Session Example'
55
route_name: session_example.form
66
description: 'Setting Form'
7-
weight: 10

0 commit comments

Comments
 (0)
Please sign in to comment.