File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -360,6 +360,16 @@ docs: $(JOIN_HTML_OUT) $(INTERSECTION_HTML_OUT) $(INTERSECTION_RANKS_HTML_OUT) $
360
360
361
361
.PHONY : docs
362
362
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
+
363
373
# /
364
374
# Opens an HTML table showing all API data in a web browser.
365
375
#
Original file line number Diff line number Diff line change @@ -98,18 +98,30 @@ $ make
98
98
99
99
## Usage
100
100
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,
102
108
103
109
``` bash
104
110
$ make view-join
105
111
```
106
112
107
- To view the view the intersection of array library APIs,
113
+ To view the intersection of array library APIs,
108
114
109
115
``` bash
110
116
$ make view-intersection
111
117
```
112
118
119
+ To view a table ranking the intersection of array library APIs,
120
+
121
+ ``` bash
122
+ $ make view-intersection-ranks
123
+ ```
124
+
113
125
To view array library APIs which are not in the intersection,
114
126
115
127
``` bash
You can’t perform that action at this time.
0 commit comments