Skip to content

Commit 7abb413

Browse files
committed
A minor fix.
1 parent 136cf7c commit 7abb413

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/fpm-deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ env.GCC_V }} 100 \
3030
--slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${{ env.GCC_V }} \
31-
--slave /usr/bingcov gcov /usr/bin/gcov-${{ env.GCC_V }}
31+
--slave /usr/bin/gcov gcov /usr/bin/gcov-${{ env.GCC_V }}
3232
3333
- name: Install fpm latest release
3434
uses: fortran-lang/setup-fpm@v3

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -179,15 +179,15 @@ make -f Makefile.manual FYPPFLAGS=-DMAXRANK=4
179179

180180
### Build with [fortran-lang/fpm](https://github.com/fortran-lang/fpm)
181181

182-
Fortran Package Manager (fpm) is a great package manager and build system for Fortran.
183-
You can build using provided `fpm.toml`:
182+
Fortran Package Manager (fpm) is a package manager and build system for Fortran.
183+
You can build `stdlib` using provided `fpm.toml`:
184184

185185
```sh
186186
git checkout stdlib-fpm
187187
fpm build --profile release
188188
```
189189

190-
To use `stdlib` within your `fpm` project, add the following to your `fpm.toml` file:
190+
To use `stdlib` within your `fpm` project, add the following lines to your `fpm.toml` file:
191191
```toml
192192
[dependencies]
193193
stdlib = { git="https://github.com/fortran-lang/stdlib", branch="stdlib-fpm" }

0 commit comments

Comments
 (0)