Skip to content

Commit 7d3f8e3

Browse files
farizrahman4umartinjankowiak
authored andcommitted
docstring typo (pyro-ppl#527)
1 parent 44124b8 commit 7d3f8e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyro/nn/auto_reg_nn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class MaskedLinear(nn.Linear):
1919
:param mask: the mask to apply to the in_features x out_features weight matrix
2020
:type mask: torch.autograd.Variable
2121
:param bias: whether or not `MaskedLinear` should include a bias term. defaults to `True`
22-
:type bias bool:
22+
:type bias: bool
2323
"""
2424
def __init__(self, in_features, out_features, mask, bias=True):
2525
super(MaskedLinear, self).__init__(in_features, out_features, bias)

0 commit comments

Comments
 (0)