Sad Tux - Windows bias detected
This page contains Windows bias

About This Page

This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.

Bias Analysis

Detected Bias Types
windows_first
powershell_heavy
Summary
The documentation provides environment variable setup instructions for Windows (cmd and PowerShell) before Linux/macOS, and includes detailed Windows-specific commands (setx, PowerShell) alongside bash. While Linux/macOS commands are present, the ordering and emphasis favor Windows. There are no Linux-specific deployment or tooling examples, but the bias is mainly in the order and detail of environment variable instructions.
Recommendations
  • Present environment variable instructions for all platforms in parallel tables or grouped tabs, rather than listing Windows first.
  • Avoid giving extra detail (such as 'restart the command prompt') only for Windows; provide parity for Linux/macOS (e.g., 'restart your terminal').
  • Where possible, use cross-platform instructions or highlight platform differences equally.
  • Consider including Linux/macOS-specific deployment or troubleshooting tips if Windows-specific ones are present.
  • If referencing editors or tools, ensure Linux/macOS options are mentioned with equal prominence.
GitHub Create Pull Request

Scan History

Date Scan Status Result
2025-07-12 23:44 #41 cancelled Biased Biased
2025-07-12 00:58 #8 cancelled Clean Clean
2025-07-10 05:06 #7 processing Clean Clean
2025-07-09 23:22 #6 cancelled Clean Clean

Flagged Code Snippets

    setx APP_CONFIGURATION_ENDPOINT "endpoint-of-your-app-configuration-store"
    
    $Env:APP_CONFIGURATION_ENDPOINT = "endpoint-of-your-app-configuration-store"
    
    setx APP_CONFIGURATION_CONNECTION_STRING "connection-string-of-your-app-configuration-store"
    
    $Env:APP_CONFIGURATION_CONNECTION_STRING = "connection-string-of-your-app-configuration-store"