-
Notifications
You must be signed in to change notification settings - Fork 1.6k
reformatting About_* for 80 columns - part 1 #1893
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
Conversation
@@ -194,8 +194,8 @@ Get-Help about_Functions | |||
|
|||
PowerShell aliases are represented by objects that are instances of the | |||
System.Management.Automation.AliasInfo class. For more information about this | |||
type of object, see [AliasInfo Class](http://go.microsoft.com/fwlink/?LinkId=143644) | |||
in the Microsoft Developer Network (MSDN) library. | |||
type of object, see [AliasInfo Class][aliasinfo] in the Microsoft Developer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Raw:
For more information about this type of object, see [AliasInfo Class][aliasinfo]
this doesn't look like a valid link, but it renders correctly in GitHub? Am I misunderstanding the link syntax here?
|`$b = 1,2,3`<br/>`$b + 4` | `1`<br/>`2`<br/>`3`<br/>`4`| | ||
|`$servers = @{`<br/> `0 = "LocalHost"`<br/> `1 = "Server01"`<br/> `2 = "Server02"`<br/>`}`<br/>`$servers + @{3 = "Server03"}` | `Name Value`<br/>`---- -----`<br/>`3 Server03`<br/>`2 Server02`<br/>`1 Server01`<br/>`0 LocalHost`| | ||
|`#Use assignment operator`<br/>`$servers += @{3 = "Server03"}` | `Name Value`<br/>`---- -----`<br/>`3 Server03`<br/>`2 Server02`<br/>`1 Server01`<br/>`0 LocalHost`| | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intentionally removed?
Reformatted files to fit in 80 columns per Issue #1806. No other changes to the content.
Version(s) of document impacted