From 0199b0ad37ec539b05b1400560a3d61e0c8ff698 Mon Sep 17 00:00:00 2001 From: Cedric St-Jean Date: Sat, 16 Sep 2017 07:22:23 -0400 Subject: [PATCH] Text --- README.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.ipynb b/README.ipynb index eabbcc5..bcb58f4 100644 --- a/README.ipynb +++ b/README.ipynb @@ -241,7 +241,7 @@ "\n", "#### Tracing tips\n", "\n", - "It might be tempting to run `@trace MyModule some_long_computation()`, but a) there is a non-negligible cost to every traced call, and b) a trace with a million calls is too large and unwieldy to be of much use anyway. If you are only interested in the details of one particular `my_fun` call that happens during `some_long_computation()`, then it's usually better to do something like this:\n", + "It might be tempting to run `@trace MyModule some_long_computation()`, but a) there is a small cost to every traced call, and b) a trace with a million calls is too large and unwieldy to be of much use anyway. If you are only interested in the details of one particular `my_fun` call that happens during `some_long_computation()`, then it's usually better to do this:\n", "\n", "```julia\n", "trace_my_fun = @trace my_fun some_long_computation() # fast, because we're only tracing one function\n",