Skip to content

Commit 90c41db

Browse files
authored
Update README.md
1 parent 283fe20 commit 90c41db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ write(6,*)"icount = ",icount
5757
end program test
5858
```
5959

60-
Example compile and link to ***static*** library using gfortran:
60+
Example compile and link to the ***static*** library using gfortran:
6161

6262
```bash
6363
gfortran -I<prefix>/include -o test.x test.f90 <prefix>/lib/libfstrings.a
6464
```
6565

6666
Note that this does not make the executable 100% static.
6767

68-
Example compile and link to ***shared object*** library using gfortran:
68+
Example compile and link to the ***shared object*** library using gfortran:
6969

7070
```bash
7171
gfortran -I<prefix>/include -o test.x test.f90 -L<prefix>/lib -lfstrings

0 commit comments

Comments
 (0)