Skip to content

Commit 8a9ad2a

Browse files
author
Anatoly Ostrovsky
committed
Doc fixes
1 parent f545cee commit 8a9ad2a

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ typedoc: types pretty
4040
serve:
4141
@npm run serve
4242

43-
prepare-release: test check types jsdoc pretty build
43+
prepare-release: test check types typedoc pretty build
4444

4545
PLAYWRIGHT_TEST := npx playwright test
4646

docs/content/docs/directive/class-odd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: ng-class-odd
33
description: >
4-
Apply CSS classes to odd-indexed elements inside `ngRepeat`.
4+
Apply CSS classes to odd-indexed elements inside `ng-repeat`.
55
---
66

77
### Description

docs/content/docs/directive/class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ The `ng-class` directive allows dynamically setting CSS classes on an HTML
1010
element by binding to an expression. The directive supports the following
1111
expression types:
1212

13-
1. **String** — space-delimited class names.
14-
2. **Object** — keys as class names and values as booleans. Truthy values add
15-
the class.
16-
3. **Array** — containing strings and/or objects as described above.
13+
- **String** — space-delimited class names.
14+
- **Object** — keys as class names and values as booleans. Truthy values add the
15+
class.
16+
- **Array** — containing strings and/or objects as described above.
1717

1818
When the expression changes:
1919

docs/content/docs/directive/copy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ copyed.
2424
- **Example:**
2525

2626
```html
27-
<div ng-copy="$ctrl.greet($event)"></div>
27+
<div contenteditable="true" ng-copy="$ctrl.greet($event)">Content</div>
2828
```
2929

3030
---

docs/layouts/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h1>Not found</h1>
66
<a href='{{ "" | relURL }}'>home page</a>.
77
</p>
88
<p>
9-
You can learn how to make a 404 page like this in
9+
You can learn how to make a 404-page like this in
1010
<a href="https://gohugo.io/templates/404/">Custom 404 Pages</a>.
1111
</p>
1212
</div>

docs/static/examples/eventbus/eventbus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
angular.module('demo', []).controller(
1+
window.angular.module('demo', []).controller(
22
'DemoCtrl',
33
class {
44
static $inject = ['$eventBus', '$scope'];
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
<script type="module">
4848
import {
4949
fluentSelect,
50-
fluentOption,
5150
fluentTab,
5251
fluentTabPanel,
5352
fluentTabs,

0 commit comments

Comments
 (0)