Skip to content

Commit 9a2d6c0

Browse files
Fix typos in multivariate_normal.py (#2331)
Fix two Defualt -> Default typos
1 parent 305c1ea commit 9a2d6c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gpytorch/distributions/multivariate_normal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def rsample(self, sample_shape: torch.Size = torch.Size(), base_samples: Optiona
215215
:param sample_shape: The number of samples to generate. (Default: `torch.Size([])`.)
216216
:param base_samples: The `*sample_shape x *batch_shape x N` tensor of
217217
i.i.d. (or approximately i.i.d.) standard Normal samples to
218-
reparameterize. (Defualt: None.)
218+
reparameterize. (Default: None.)
219219
:return: A `*sample_shape x *batch_shape x N` tensor of i.i.d. reparameterized samples.
220220
"""
221221
covar = self.lazy_covariance_matrix
@@ -274,7 +274,7 @@ def sample(self, sample_shape: torch.Size = torch.Size(), base_samples: Optional
274274
:param sample_shape: The number of samples to generate. (Default: `torch.Size([])`.)
275275
:param base_samples: The `*sample_shape x *batch_shape x N` tensor of
276276
i.i.d. (or approximately i.i.d.) standard Normal samples to
277-
reparameterize. (Defualt: None.)
277+
reparameterize. (Default: None.)
278278
:return: A `*sample_shape x *batch_shape x N` tensor of i.i.d. samples.
279279
"""
280280
with torch.no_grad():

0 commit comments

Comments
 (0)