Skip to content

Commit 4164981

Browse files
committed
Fix indentation
1 parent 2e81268 commit 4164981

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/mod_layer.f90

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ module mod_layer
3131
end type array2d
3232

3333
interface layer_type
34-
type(layer_type) module function constructor(this_size, next_size) result(layer)
35-
!! Layer class constructor. this_size is the number of neurons in the layer.
36-
!! next_size is the number of neurons in the next layer, used to allocate
37-
!! the weights.
38-
implicit none
39-
integer(ik), intent(in) :: this_size, next_size
40-
end function constructor
34+
type(layer_type) module function constructor(this_size, next_size) result(layer)
35+
!! Layer class constructor. this_size is the number of neurons in the layer.
36+
!! next_size is the number of neurons in the next layer, used to allocate
37+
!! the weights.
38+
implicit none
39+
integer(ik), intent(in) :: this_size, next_size
40+
end function constructor
4141
end interface layer_type
4242

4343
interface array1d

0 commit comments

Comments
 (0)