Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in nrql-tutorial-advanced-functions.mdx #19349

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<Steps>
<Step>
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.

Check warning on line 28 in src/content/docs/nrql/nrql-tutorials/nrql-tutorial-advanced-functions.mdx

View workflow job for this annotation

GitHub Actions / vale-linter

[vale] reported by reviewdog 🐶 [new-relic.ComplexWords] Consider using 'earlier' instead of 'previous'. Raw Output: {"message": "[new-relic.ComplexWords] Consider using 'earlier' instead of 'previous'.", "location": {"path": "src/content/docs/nrql/nrql-tutorials/nrql-tutorial-advanced-functions.mdx", "range": {"start": {"line": 28, "column": 424}}}, "severity": "INFO"}

```sql
SELECT stddev(duration)
Expand Down
Loading