Skip to content
Snippets Groups Projects
Commit 700158c9 authored by Jennifer Hodgdon's avatar Jennifer Hodgdon
Browse files

Issue #2494319 by Pere Orga: Follow up to Spellchecking Drupal - Comments

parent c3cb3031
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@ public function applyUpdates() {
$change_list = $this->getChangeList();
if ($change_list) {
// getChangeList() only disables the cache and does not invalidate.
// In case there are changes, explictly invalidate caches.
// In case there are changes, explicitly invalidate caches.
$this->entityManager->clearCachedDefinitions();
}
foreach ($change_list as $entity_type_id => $change_list) {
......
......@@ -6,9 +6,9 @@
* Available variables:
* - language_types: A list of language negotiation types. Each language type
* contains the following:
* - type: The machine name for the negotation type.
* - title: The language negotation type name.
* - description: A description for how the language negotation type operates.
* - type: The machine name for the negotiation type.
* - title: The language negotiation type name.
* - description: A description for how the language negotiation type operates.
* - configurable: A radio element to toggle the table.
* - table: A draggable table for the language detection methods of this type.
* - children: Remaining form items for the group.
......
......@@ -464,7 +464,7 @@ public function prepareAndNormalize() {
}
/**
* {@inhertidoc}
* {@inheritdoc}
*/
public function preExecute(SelectInterface $query = NULL) {
if (!$this->executedPrepare) {
......
......@@ -29,7 +29,7 @@ class ScanDirectoryTest extends FileTestBase {
protected function setUp() {
parent::setUp();
// Hardcode the location of the simpletest files as it is already known
// and shouldn't change, and we don't yet have a way to retreive their
// and shouldn't change, and we don't yet have a way to retrieve their
// location from drupal_get_filename() in a cached way.
// @todo Remove as part of https://www.drupal.org/node/2186491
$this->path = 'core/modules/simpletest/files';
......
......@@ -75,7 +75,7 @@ public function testTwigNamespaces() {
$this->assertText('This line is from test_theme_twig_registry_loader_theme/templates/twig-registry-loader-test-extend.html.twig');
$this->assertText('This line is from test_theme_twig_registry_loader_theme/templates/twig-registry-loader-test-include.html.twig');
// Enable a subtheme for the theme that doesnt have any overrides to make
// Enable a subtheme for the theme that doesn't have any overrides to make
// sure that templates are being loaded from the first parent which has the
// templates.
$this->config('system.theme')
......
......@@ -13,7 +13,7 @@
use Symfony\Component\HttpFoundation\RequestStack;
/**
* Creates a PrivateTempStore object for a given collecton.
* Creates a PrivateTempStore object for a given collection.
*/
class PrivateTempStoreFactory {
......
......@@ -60,7 +60,7 @@ public function providerTestTrustedHosts() {
// Tests canonical URL.
$data[] = ['www.example.com', 'www.example.com', 'canonical URL is trusted', TRUE];
// Tests missing hostname for HTTP/1.0 compatability where the Host
// Tests missing hostname for HTTP/1.0 compatibility where the Host
// header is optional.
$data[] = [NULL, 'www.example.com', 'empty Host is valid', TRUE];
......
......@@ -25,9 +25,9 @@ parameters:
cookie_lifetime: 2000000
#
# Drupal automatically generates a unique session cookie name based on the
# full domain name used to access the site. This mechanism is sufficent for
# most use-cases, including multi-site deployments. However, if it is
# desired that a session can be reused accross different subdomains, the
# full domain name used to access the site. This mechanism is sufficient
# for most use-cases, including multi-site deployments. However, if it is
# desired that a session can be reused across different subdomains, the
# cookie domain needs to be set to the shared base domain. Doing so assures
# that users remain logged in as they cross between various subdomains.
# To maximize compatibility and normalize the behavior across user agents,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment