From 2c59f45f8feaf1f1e1a1a0dce4038356e4936284 Mon Sep 17 00:00:00 2001 From: Yash Katariya Date: Tue, 2 Jun 2020 08:47:57 -0700 Subject: [PATCH] Add backticks in the deprecation notice to link off automatically PiperOrigin-RevId: 314338101 Change-Id: Id0640a9fd78cc265783f53b6ee4425d2330f9ecc --- tensorflow/python/eager/def_function.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tensorflow/python/eager/def_function.py b/tensorflow/python/eager/def_function.py index c61f39111b1..57bbca37d41 100644 --- a/tensorflow/python/eager/def_function.py +++ b/tensorflow/python/eager/def_function.py @@ -308,7 +308,8 @@ RUN_FUNCTIONS_EAGERLY = False @deprecation.deprecated( None, - "Use tf.config.run_functions_eagerly instead of the experimental version.") + "Use `tf.config.run_functions_eagerly` instead of the experimental " + "version.") @tf_export("config.experimental_run_functions_eagerly") def experimental_run_functions_eagerly(run_eagerly): """Enables / disables eager execution of `tf.function`s.