Skip to content

Fix PowerShell syntax error in concepts.md code example#129

Closed
Copilot wants to merge 2 commits intowebsitefrom
copilot/sub-pr-128
Closed

Fix PowerShell syntax error in concepts.md code example#129
Copilot wants to merge 2 commits intowebsitefrom
copilot/sub-pr-128

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Jan 30, 2026

Summary

Fixed PowerShell syntax error in documentation code example where line continuation was missing.

Motivation

The PowerShell code example in docs/about/concepts.md had a syntax error: the -DesiredState parameter appeared on a new line without proper line continuation, making the example invalid PowerShell code.

Type of Change

  • Bug fix
  • New feature
  • Breaking change
  • Documentation update
  • Refactoring / internal improvement

Changes

  • Added backtick () line continuation character before -DesiredState` parameter in code example

Before:

$Request = New-IdleLifecycleRequest -LifecycleEvent 'Joiner' -IdentityKeys @{
    key = 'first.last'
}
-DesiredState @{  # ❌ Syntax error - parameter on new line without continuation
    Firstname = 'First'
}

After:

$Request = New-IdleLifecycleRequest -LifecycleEvent 'Joiner' -IdentityKeys @{
    key = 'first.last'
} `
-DesiredState @{  # ✓ Valid - backtick continues the command
    Firstname = 'First'
}

Testing

  • Manual testing
  • Unit tests
  • Contract tests

How to test & review

Verify the PowerShell syntax is now valid by checking that the backtick appears at the end of line 74 in docs/about/concepts.md.

Checklist

  • Code follows STYLEGUIDE.md
  • Tests added or updated (N/A - documentation fix)
  • Documentation updated
  • No UI/auth logic added to IdLE.Core
  • No breaking changes without discussion

Related Issues

Addresses feedback from PR #128.


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

…ntinuation

Co-authored-by: blindzero <13959569+blindzero@users.noreply.github.com>
Copilot AI changed the title [WIP] WIP address feedback on docs and website rewrite Fix PowerShell syntax error in concepts.md code example Jan 30, 2026
Copilot AI requested a review from blindzero January 30, 2026 23:40
@blindzero blindzero closed this Jan 30, 2026
@blindzero blindzero deleted the copilot/sub-pr-128 branch January 31, 2026 22:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants