From 90a23347b40e92bd93590648ac8dfc9c6f165b45 Mon Sep 17 00:00:00 2001 From: Vaclav Elias Date: Tue, 24 Oct 2023 19:18:38 +0100 Subject: [PATCH] Update 2023-10-23-new-diagnostic-analyzers-feature.md --- posts/2023-10-23-new-diagnostic-analyzers-feature.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/posts/2023-10-23-new-diagnostic-analyzers-feature.md b/posts/2023-10-23-new-diagnostic-analyzers-feature.md index da6d86fd..dd378f0f 100644 --- a/posts/2023-10-23-new-diagnostic-analyzers-feature.md +++ b/posts/2023-10-23-new-diagnostic-analyzers-feature.md @@ -18,7 +18,7 @@ Stride continues to evolve, adding new utilities and features every week. This b ## What is a `DiagnosticAnalyzer`? -A `DiagnosticAnalyzer` is a feature from Roslyn that scans your code while you are typing in your IDE. C# also utilizes this feature; every time you see a warning or red squiggly lines in your IDE, a `DiagnosticAnalyzer` gets triggered. Importantly, this analysis has nothing to do with telemetry. +A `DiagnosticAnalyzer` is a feature from Roslyn that scans your code while you are typing in your IDE. C# also utilizes this feature; every time you see a warning or red squiggly lines in your IDE, a `DiagnosticAnalyzer` gets triggered. Analyzers are offline tools used by the compiler to assist programmers. They are not used to collect telemetry on how Stride is being used. ## What does it do? @@ -42,4 +42,4 @@ Adding new analyzers to the Stride engine is straightforward. However, be aware This is a new quality-of-life feature that simplifies development in Stride by providing immediate feedback on coding issues. -Thank you for reading 📖, and happy coding 💻👩‍💻👨‍💻! \ No newline at end of file +Thank you for reading 📖, and happy coding 💻👩‍💻👨‍💻!