Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 3422114

Browse files
committed
docs: change remaining Angular occurrences to AngularJS
1 parent 68802ca commit 3422114

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.jshintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"strict": "global",
33
"globals": {
4-
// Angular
4+
// AngularJS
55
"angular": false,
66

7-
// Angular mocks
7+
// AngularJS mocks
88
"module": false,
99
"inject": false,
1010

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The full tutorial can be found at https://docs.angularjs.org/tutorial.
3131
- There is no dynamic backend (no application server) for this application. Instead we fake the
3232
application server by fetching static JSON files.
3333
- Read the _Development_ section at the end to familiarize yourself with running and developing
34-
an Angular application.
34+
an AngularJS application.
3535

3636

3737
## Commits / Tutorial Outline
@@ -59,7 +59,7 @@ git diff step-?..step-?
5959
- Add a stylesheet file ('app/app.css').
6060
- Add a static list with two phones.
6161

62-
### step-2 _Angular Templates_
62+
### step-2 _AngularJS Templates_
6363

6464
- Convert the static phone list to dynamic by:
6565
- Creating a `PhoneListController` controller.
@@ -239,7 +239,7 @@ app/ --> all the source code of the app (along with unit tes
239239
phones/... --> static JSON files with phone data (used to fake a backend API)
240240
app.animations.css --> hooks for running CSS animations with `ngAnimate`
241241
app.animations.js --> hooks for running JS animations with `ngAnimate`
242-
app.config.js --> app-wide configuration of Angular services
242+
app.config.js --> app-wide configuration of AngularJS services
243243
app.css --> default stylesheet
244244
app.module.js --> the main app module
245245
index.html --> app layout file (the main HTML template file of the app)
@@ -251,7 +251,7 @@ e2e-tests/ --> config and source files for e2e tests
251251
node_modules/... --> development tools (fetched using `npm`)
252252
253253
scripts/ --> handy scripts
254-
private/... --> private scripts used by the Angular Team to maintain this repo
254+
private/... --> private scripts used by the AngularJS Team to maintain this repo
255255
update-repo.sh --> script for pulling down the latest version of this repo (!!! DELETES ALL CHANGES YOU HAVE MADE !!!)
256256
257257
bower.json --> Bower specific metadata, including client-side dependencies

e2e-tests/scenarios.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
// Angular E2E Testing Guide:
3+
// AngularJS E2E Testing Guide:
44
// https://docs.angularjs.org/guide/e2e-testing
55

66
describe('My app', function() {

0 commit comments

Comments
 (0)