From 831592c3813593a09baf11f0a40840331ef605ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Wed, 14 Feb 2018 22:56:44 -0500 Subject: [PATCH] Revert "style: fix typos boostrap to bootstrap (#21917)" This reverts commit 363498b6b44610f6dd76d5c0603be0289707b9cf. --- packages/examples/upgrade/static/ts/module.ts | 2 +- packages/platform-server/integrationtest/e2e/helloworld-spec.ts | 2 +- .../platform-server/integrationtest/e2e/transferstate-spec.ts | 2 +- packages/upgrade/test/static/integration/examples_spec.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/examples/upgrade/static/ts/module.ts b/packages/examples/upgrade/static/ts/module.ts index 38abb49a04..27d5af51da 100644 --- a/packages/examples/upgrade/static/ts/module.ts +++ b/packages/examples/upgrade/static/ts/module.ts @@ -105,7 +105,7 @@ class Ng1HeroComponentWrapper extends UpgradeComponent implements OnInit, OnChan imports: [BrowserModule, UpgradeModule] }) class Ng2AppModule { - ngDoBootstrap() { /* this is a placeholder to stop the bootstrapper from complaining */ + ngDoBootstrap() { /* this is a placeholder to stop the boostrapper from complaining */ } } // #enddocregion diff --git a/packages/platform-server/integrationtest/e2e/helloworld-spec.ts b/packages/platform-server/integrationtest/e2e/helloworld-spec.ts index 594c9ab01a..67c822ffbd 100644 --- a/packages/platform-server/integrationtest/e2e/helloworld-spec.ts +++ b/packages/platform-server/integrationtest/e2e/helloworld-spec.ts @@ -12,7 +12,7 @@ import {verifyNoBrowserErrors} from './util'; describe('Hello world E2E Tests', function() { it('should display: Hello world!', function() { - // Load the page without waiting for Angular since it is not bootstrapped automatically. + // Load the page without waiting for Angular since it is not boostrapped automatically. browser.driver.get(browser.baseUrl + 'helloworld'); const style = browser.driver.findElement(by.css('style[ng-transition="hlw"]')); diff --git a/packages/platform-server/integrationtest/e2e/transferstate-spec.ts b/packages/platform-server/integrationtest/e2e/transferstate-spec.ts index c7d5cc8f61..a4eb06be98 100644 --- a/packages/platform-server/integrationtest/e2e/transferstate-spec.ts +++ b/packages/platform-server/integrationtest/e2e/transferstate-spec.ts @@ -12,7 +12,7 @@ import {verifyNoBrowserErrors} from './util'; describe('TransferState', function() { it('should transfer component state', function() { - // Load the page without waiting for Angular since it is not bootstrapped automatically. + // Load the page without waiting for Angular since it is not boostrapped automatically. browser.driver.get(browser.baseUrl + 'transferstate'); // Test the contents from the server. diff --git a/packages/upgrade/test/static/integration/examples_spec.ts b/packages/upgrade/test/static/integration/examples_spec.ts index 319f87d7d7..1a31e6f0e3 100644 --- a/packages/upgrade/test/static/integration/examples_spec.ts +++ b/packages/upgrade/test/static/integration/examples_spec.ts @@ -52,7 +52,7 @@ import {bootstrap, html, multiTrim} from '../test_helpers'; imports: [BrowserModule, UpgradeModule] }) class Ng2Module { - ngDoBootstrap() { /* this is a placeholder to stop the bootstrapper from complaining */ + ngDoBootstrap() { /* this is a placeholder to stop the boostrapper from complaining */ } }