Skip to content

Commit

Permalink
Fix small typo in deprecation message.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 237447847
  • Loading branch information
brianwa84 authored and tensorflower-gardener committed Mar 8, 2019
1 parent dae85a8 commit 8281031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow_probability/python/distributions/chi2.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class Chi2WithAbsDf(Chi2):
@deprecation.deprecated(
"2019-06-05",
"Chi2WithAbsDf is deprecated, use "
"Chi2(df=tf.floor(tf.abs(scale_diag))) instead.",
"Chi2(df=tf.floor(tf.abs(df))) instead.",
warn_once=True)
def __init__(self,
df,
Expand Down

0 comments on commit 8281031

Please sign in to comment.