From 7f37a4d49bdffebe0190e2dc87bb43c5b521fe05 Mon Sep 17 00:00:00 2001 From: Craig Cobb <72519216+ccobb-nr@users.noreply.github.com> Date: Wed, 20 Nov 2024 12:19:23 -0600 Subject: [PATCH] Fix typo in nrql-tutorial-advanced-functions.mdx --- .../nrql/nrql-tutorials/nrql-tutorial-advanced-functions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/nrql/nrql-tutorials/nrql-tutorial-advanced-functions.mdx b/src/content/docs/nrql/nrql-tutorials/nrql-tutorial-advanced-functions.mdx index 490810bb69c..e9e6e8e432c 100644 --- a/src/content/docs/nrql/nrql-tutorials/nrql-tutorial-advanced-functions.mdx +++ b/src/content/docs/nrql/nrql-tutorials/nrql-tutorial-advanced-functions.mdx @@ -25,7 +25,7 @@ We think you'll find these features downright invaluable. Let's get started! - Standard deviation mesaures the amount of variation or dispersion within a set of values. It uses a scale from low (values close to the average) to high (values far from the average). The `stddev()`function lets you look between the lines of averages and understand reported values on a deeper level. In this example, you compare the standard deviation of transaction response time ("duration") for the last day to the previous day. + Standard deviation measures the amount of variation or dispersion within a set of values. It uses a scale from low (values close to the average) to high (values far from the average). The `stddev()`function lets you look between the lines of averages and understand reported values on a deeper level. In this example, you compare the standard deviation of transaction response time ("duration") for the last day to the previous day. ```sql SELECT stddev(duration)