From af3a355b09c34cab6e2f6fb7ab2d086eeaa17d0e Mon Sep 17 00:00:00 2001 From: CJ <105300705+cjobermaier@users.noreply.github.com> Date: Fri, 16 Aug 2024 16:11:16 -0500 Subject: [PATCH] Update filesha1.mdx --- website/docs/language/functions/filesha1.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/language/functions/filesha1.mdx b/website/docs/language/functions/filesha1.mdx index f569877d8d..078c743364 100644 --- a/website/docs/language/functions/filesha1.mdx +++ b/website/docs/language/functions/filesha1.mdx @@ -33,7 +33,7 @@ d3486ae9136e7856bc42212385ea797094475802 ## Example use case -In the following example the `filesha1` function computes the SHA-1 hash of the file example.txt located in the current module's directory. The result will be a 40-character hexadecimal string representing the SHA-1 hash. +In the following example the `filesha1` function computes the SHA-1 hash of the file `example.txt` located in the current module's directory. The result will be a 40-character hexadecimal string representing the SHA-1 hash. ```hcl output "file_hash" { value = filesha1("${path.module}/example.txt") }