Skip to content

Commit

Permalink
Fix typo funciton->function
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyBourne committed Oct 3, 2024
1 parent 45b4d4a commit d049a6a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions include/v2/map/map.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ end subroutine swap
#### operator(==)

``` f90
logical funciton equal_to(a, b)
logical function equal_to(a, b)
type(map), intent(in) :: a
type(map), intent(in) :: b
end function equal_to
Expand All @@ -194,7 +194,7 @@ end function equal_to
#### operator(/=)

``` f90
logical funciton not_equal_to(a, b)
logical function not_equal_to(a, b)
type(map), intent(in) :: a
type(map), intent(in) :: b
end function not_equal_to
Expand All @@ -203,7 +203,7 @@ end function not_equal_to
#### operator(<)

``` f90
logical funciton less_than(a, b)
logical function less_than(a, b)
type(map), intent(in) :: a
type(map), intent(in) :: b
end function less_than
Expand All @@ -212,7 +212,7 @@ end function less_than
#### operator(<=)

``` f90
logical funciton less_than_or_equal_to(a, b)
logical function less_than_or_equal_to(a, b)
type(map), intent(in) :: a
type(map), intent(in) :: b
end function less_than_or_equal_to
Expand All @@ -221,7 +221,7 @@ end function less_than_or_equal_to
#### operator(>)

``` f90
logical funciton greater_than(a, b)
logical function greater_than(a, b)
type(map), intent(in) :: a
type(map), intent(in) :: b
end function greater_than
Expand All @@ -230,7 +230,7 @@ end function greater_than
#### operator(>=)

``` f90
logical funciton greater_than_or_equal_to(a, b)
logical function greater_than_or_equal_to(a, b)
type(map), intent(in) :: a
type(map), intent(in) :: b
end function greater_than_or_equal_to
Expand Down
12 changes: 6 additions & 6 deletions include/v2/vector/vector.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ end subroutine swap
#### operator(==)

``` f90
logical funciton equal_to(a, b)
logical function equal_to(a, b)
type(vector), intent(in) :: a
type(vector), intent(in) :: b
end function equal_to
Expand All @@ -372,7 +372,7 @@ end function equal_to
#### operator(/=)

``` f90
logical funciton not_equal_to(a, b)
logical function not_equal_to(a, b)
type(vector), intent(in) :: a
type(vector), intent(in) :: b
end function not_equal_to
Expand All @@ -381,7 +381,7 @@ end function not_equal_to
#### operator(<)

``` f90
logical funciton less_than(a, b)
logical function less_than(a, b)
type(vector), intent(in) :: a
type(vector), intent(in) :: b
end function less_than
Expand All @@ -390,7 +390,7 @@ end function less_than
#### operator(<=)

``` f90
logical funciton less_than_or_equal_to(a, b)
logical function less_than_or_equal_to(a, b)
type(vector), intent(in) :: a
type(vector), intent(in) :: b
end function less_than_or_equal_to
Expand All @@ -399,7 +399,7 @@ end function less_than_or_equal_to
#### operator(>)

``` f90
logical funciton greater_than(a, b)
logical function greater_than(a, b)
type(vector), intent(in) :: a
type(vector), intent(in) :: b
end function greater_than
Expand All @@ -408,7 +408,7 @@ end function greater_than
#### operator(>=)

``` f90
logical funciton greater_than_or_equal_to(a, b)
logical function greater_than_or_equal_to(a, b)
type(vector), intent(in) :: a
type(vector), intent(in) :: b
end function greater_than_or_equal_to
Expand Down

0 comments on commit d049a6a

Please sign in to comment.