File tree 3 files changed +27
-4
lines changed
3 files changed +27
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : C/C++ CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ master develop ]
6
+ pull_request :
7
+ branches : [ master develop ]
8
+
9
+ jobs :
10
+ build :
11
+
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : configure
17
+ run : ./configure
18
+ - name : make
19
+ run : make
20
+ - name : make check
21
+ run : make check
22
+ - name : make distcheck
23
+ run : make distcheck
Original file line number Diff line number Diff line change @@ -12,5 +12,5 @@ notifications:
12
12
13
13
branches :
14
14
only :
15
- - master
16
15
- develop
16
+ - master
Original file line number Diff line number Diff line change @@ -182,9 +182,9 @@ and HTML output using a common set of function calls.
182
182
The application
183
183
decides at run time which output style should be produced.
184
184
The
185
- application calls a function
185
+ application calls the function
186
186
.Xr xo_emit 3
187
- to product output that is
187
+ to produce output that is
188
188
described in a format string.
189
189
A
190
190
.Dq field descriptor
208
208
format string.
209
209
.Pp
210
210
Output
211
- can then be generated in various style , using the "--libxo" option.
211
+ can then be generated in various styles , using the "--libxo" option.
212
212
.Sh DEFAULT HANDLE
213
213
Handles give an abstraction for
214
214
.Nm
You can’t perform that action at this time.
0 commit comments