aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2021-08-25-audit-sampling.md
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2024-07-26 11:13:24 -0500
committerChristian Cleberg <[email protected]>2024-07-26 11:13:24 -0500
commit92310e30a038e3ba117b853fe4ee18326d158721 (patch)
treefd1a8a496b4aa3d23bac6241eae0ef871c29c4e3 /content/blog/2021-08-25-audit-sampling.md
parentf30c6a3ff6ee5c0c93bc6f8ed0195c2991201432 (diff)
downloadcleberg.net-92310e30a038e3ba117b853fe4ee18326d158721.tar.gz
cleberg.net-92310e30a038e3ba117b853fe4ee18326d158721.tar.bz2
cleberg.net-92310e30a038e3ba117b853fe4ee18326d158721.zip
fix broken URLs
Diffstat (limited to 'content/blog/2021-08-25-audit-sampling.md')
-rw-r--r--content/blog/2021-08-25-audit-sampling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/blog/2021-08-25-audit-sampling.md b/content/blog/2021-08-25-audit-sampling.md
index c2d3c1d..90562c6 100644
--- a/content/blog/2021-08-25-audit-sampling.md
+++ b/content/blog/2021-08-25-audit-sampling.md
@@ -66,7 +66,7 @@ generation and will allow you to reproduce a sample, given that nothing else
changes. This is critical to the posterity of audit work. After all, how can you
say your audit process is adequately documented if the next person can't run the
code and get the same sample? The final piece here on randomness is to look at
-the [choice](https://docs.%20python.org/3/library/random.html#random.choice)
+the [choice](https://docs.python.org/3/library/random.html#random.choice)
function used above. This is the crux of the generation and can also be examined
for more detailed analysis on its reliability. As far as auditing goes, we will
trust that these functions are mathematically random.