Skip to content

Commit 7c6e561

Browse files
committed
Auto-generated commit
1 parent 1222b93 commit 7c6e561

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`09c9ceb`](https://github.com/stdlib-js/stdlib/commit/09c9ceb58c6dd23c10f1980094851983c57d693f) - **chore:** fix formatting _(by Athan Reines)_
2526
- [`51bf6f9`](https://github.com/stdlib-js/stdlib/commit/51bf6f9d2bb027aacecda87e02f957badbc246b0) - **bench:** fix formatting _(by Athan Reines)_
2627
- [`575ced1`](https://github.com/stdlib-js/stdlib/commit/575ced18983327e0b22d55b2dd5076cc45f00e9e) - **docs:** update related packages sections [(#6385)](https://github.com/stdlib-js/stdlib/pull/6385) _(by stdlib-bot)_
2728
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_

benchmark/fortran/benchmark.length.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f15.9)') elapsed
99+
write (str, '(f100.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f15.9)') rate
103+
write( str, '(f100.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..

0 commit comments

Comments
 (0)