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

Developer documentation fix and message fix of PossibleIncorrectUsageOfRedirectionOperatorDescription #1928

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ To install **PSScriptAnalyzer** from source code:
- Import the module

```powershell
Import-Module .\out\PSScriptAnalyzer\PSScriptAnalyzer.psd1
Import-Module .\out\PSScriptAnalyzer\[version]\PSScriptAnalyzer.psd1
```

To confirm installation: run `Get-ScriptAnalyzerRule` in the PowerShell console to obtain the
Expand Down
2 changes: 1 addition & 1 deletion Rules/Strings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@
<value>'&gt;' is not a comparison operator. Use '-gt' (greater than) or '-ge' (greater or equal).</value>
</data>
<data name="PossibleIncorrectUsageOfRedirectionOperatorDescription" xml:space="preserve">
<value>When switching between different languages it is easy to forget that '&gt;' does not mean 'great than' in PowerShell.</value>
<value>When switching between different languages it is easy to forget that '&gt;' does not mean 'greater than' in PowerShell.</value>
</data>
<data name="PossibleIncorrectUsageOfRedirectionOperatorError" xml:space="preserve">
<value>Did you mean to use the redirection operator '&gt;'? The comparison operators in PowerShell are '-gt' (greater than) or '-ge' (greater or equal).</value>
Expand Down