Skip to content

Commit 299f881

Browse files
authored
Remove broken link (#13158)
1 parent 9acd6e1 commit 299f881

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

reference/docs-conceptual/learn/deep-dives/everything-about-hashtable.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: Hashtables are really important in PowerShell so it's good to have a solid understanding of them.
33
ms.custom: contributor-KevinMarquette
4-
ms.date: 03/09/2026
4+
ms.date: 07/13/2026
55
title: Everything you wanted to know about hashtables
66
---
77
# Everything you wanted to know about hashtables
@@ -896,8 +896,8 @@ used with member access (`.`) notation. Or, you can use array index (`[]`) notat
896896

897897
### $PSBoundParameters
898898

899-
[$PSBoundParameters][PSBoundParameters] is an automatic variable that only exists inside the context of a function.
900-
It contains all the parameters that the function was called with. This isn't exactly a hashtable but
899+
`$PSBoundParameters` is an automatic variable that only exists inside the context of a function. It
900+
contains all the parameters that the function was called with. This isn't exactly a hashtable but
901901
close enough that you can treat it like one.
902902

903903
That includes removing keys and splatting it to other functions. If you find yourself writing proxy
@@ -1116,7 +1116,6 @@ kind of expected depending on how much you work with PowerShell.
11161116
[splatting]: /powershell/module/microsoft.powershell.core/about/about_splatting
11171117
[pscustomobject]: everything-about-pscustomobject.md
11181118
[JavaScriptSerializer]: /dotnet/api/system.web.script.serialization.javascriptserializer?view=netframework-4.8&preserve-view=true
1119-
[PSBoundParameters]: https://tommymaynard.com/the-psboundparameters-automatic-variable-2016/
11201119
[about_Automatic_Variables]: /powershell/module/microsoft.powershell.core/about/about_automatic_variables
11211120
[Automatic Defaults]: https://www.simple-talk.com/sysadmin/PowerShell/PowerShell-time-saver-automatic-defaults/
11221121
[Michael Sorens]: http://cleancode.sourceforge.net/wwwdoc/about.html

0 commit comments

Comments
 (0)