Skip to content

Commit 07744bd

Browse files
committed
Update docs and add rule
1 parent d4e4fca commit 07744bd

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

Makefile

+10
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,16 @@ docs: $(JOIN_HTML_OUT) $(INTERSECTION_HTML_OUT) $(INTERSECTION_RANKS_HTML_OUT) $
360360

361361
.PHONY: docs
362362

363+
#/
364+
# Opens API HTML tables in a web browser.
365+
#
366+
# @example
367+
# make view-docs
368+
#/
369+
view-docs: view-join view-intersection view-intersection-ranks view-complement
370+
371+
.PHONY: view-docs
372+
363373
#/
364374
# Opens an HTML table showing all API data in a web browser.
365375
#

README.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -98,18 +98,30 @@ $ make
9898

9999
## Usage
100100

101-
To view array API data in your local web browser,
101+
To view all array API tables in your local web browser,
102+
103+
```bash
104+
$ make view-docs
105+
```
106+
107+
To view cross-library array API data,
102108

103109
```bash
104110
$ make view-join
105111
```
106112

107-
To view the view the intersection of array library APIs,
113+
To view the intersection of array library APIs,
108114

109115
```bash
110116
$ make view-intersection
111117
```
112118

119+
To view a table ranking the intersection of array library APIs,
120+
121+
```bash
122+
$ make view-intersection-ranks
123+
```
124+
113125
To view array library APIs which are not in the intersection,
114126

115127
```bash

0 commit comments

Comments
 (0)