Skip to content

Commit

Permalink
Fix some Ford links
Browse files Browse the repository at this point in the history
Can't link to procedure arguments
  • Loading branch information
ZedThree committed Apr 4, 2023
1 parent dcd2c70 commit 7ef02f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/neasyf.f90
Original file line number Diff line number Diff line change
Expand Up @@ -771,15 +771,15 @@ end function polymorphic_get_var_rank7
!> Create a dimension if it doesn't already exist.
!>
!> If the dimension doesn't exist, also create a variable of the same name and
!> fill it with [[values]], or the integers in the range `1..dim_size`. The
!> optional argument [[unlimited]] can be used to make this dimension
!> fill it with `values`, or the integers in the range `1..dim_size`. The
!> optional argument `unlimited` can be used to make this dimension
!> unlimited in extent.
!>
!> Optional arguments "unit" and "long_name" allow you to create attributes
!> of the same names.
!>
!> The netCDF IDs of the dimension and corresponding variable can be returned
!> through [[dimid]] and [[varid]] respectively.
!> through `dimid` and `varid` respectively.
subroutine neasyf_dim(parent_id, name, values, dim_size, dimid, varid, units, long_name, unlimited)

use netcdf, only : nf90_inq_dimid, nf90_inq_varid, nf90_def_var, nf90_def_dim, nf90_put_var, nf90_put_att, &
Expand Down
6 changes: 3 additions & 3 deletions src/neasyf.in.f90
Original file line number Diff line number Diff line change
Expand Up @@ -317,15 +317,15 @@ end function polymorphic_get_var_scalar
!> Create a dimension if it doesn't already exist.
!>
!> If the dimension doesn't exist, also create a variable of the same name and
!> fill it with [[values]], or the integers in the range `1..dim_size`. The
!> optional argument [[unlimited]] can be used to make this dimension
!> fill it with `values`, or the integers in the range `1..dim_size`. The
!> optional argument `unlimited` can be used to make this dimension
!> unlimited in extent.
!>
!> Optional arguments "unit" and "long_name" allow you to create attributes
!> of the same names.
!>
!> The netCDF IDs of the dimension and corresponding variable can be returned
!> through [[dimid]] and [[varid]] respectively.
!> through `dimid` and `varid` respectively.
subroutine neasyf_dim(parent_id, name, values, dim_size, dimid, varid, units, long_name, unlimited)

use netcdf, only : nf90_inq_dimid, nf90_inq_varid, nf90_def_var, nf90_def_dim, nf90_put_var, nf90_put_att, &
Expand Down

0 comments on commit 7ef02f9

Please sign in to comment.