Skip to content

Commit 0c003ed

Browse files
committed
small changed stdlib_io.md
1 parent 91bbc17 commit 0c003ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/specs/stdlib_io.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ program demo_loadnpy
178178
use stdlib_io_npy, only: load_npy
179179
implicit none
180180
real, allocatable :: x(:,:)
181-
call loadtxt('example.npy', x)
181+
call load_npy('example.npy', x)
182182
end program demo_loadnpy
183183
```
184184

@@ -293,8 +293,8 @@ Provides formats for all kinds as defined in the `stdlib_kinds` module.
293293

294294
```fortran
295295
program demo_fmt_constants
296-
use, stdlib_kinds, only : int32, int64, sp, dp
297-
use stdlib_io, only : FMT_INT, FMT_REAL_SP, FMT_REAL_DP, FMT_COMPLEX_SP, FMT_COMPLEX_DP
296+
use stdlib_kinds, only : int32, int64, sp, dp
297+
use stdlib_io, only : FMT_INT, FMT_REAL_SP, FMT_REAL_DP, FMT_COMPLEX_SP, FMT_COMPLEX_DP
298298
implicit none
299299
300300
integer(kind=int32) :: i32

0 commit comments

Comments
 (0)