Skip to content

Commit e253367

Browse files
author
Tim Band
committed
Fixed backslashes in docstrings
1 parent 8f3604b commit e253367

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

datafaker/providers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ def constant(self, value: T) -> T:
402402
return value
403403

404404
def multivariate_normal_np(self, cov: dict[str, Any]) -> np.typing.NDArray:
405-
"""
405+
r"""
406406
Return an array of values chosen from the given covariates.
407407
408408
:param cov: Keys are ``rank``: The number of values to output;
@@ -469,7 +469,7 @@ def _find_constants(self, result: dict[str, Any]) -> dict[int, Any]:
469469
}
470470

471471
def multivariate_normal(self, cov: dict[str, Any]) -> list[float]:
472-
"""
472+
r"""
473473
Produce a list of values pulled from a multivariate distribution.
474474
475475
:param cov: A dict with various keys: ``rank`` is the number of
@@ -483,7 +483,7 @@ def multivariate_normal(self, cov: dict[str, Any]) -> list[float]:
483483
return out
484484

485485
def multivariate_lognormal(self, cov: dict[str, Any]) -> list[float]:
486-
"""
486+
r"""
487487
Produce a list of values pulled from a multivariate distribution.
488488
489489
:param cov: A dict with various keys: ``rank`` is the number of

0 commit comments

Comments
 (0)