diff --git a/docs/chart_template_guide/accessing_files.md b/docs/chart_template_guide/accessing_files.md
index 896dccfd18d5fea11fdfb8c68677d4c82d82cb6b..250fd9520f6847993caf8e9a19f152a48e0b4631 100644
--- a/docs/chart_template_guide/accessing_files.md
+++ b/docs/chart_template_guide/accessing_files.md
@@ -18,7 +18,7 @@ Helm provides access to files through the `.Files` object. Before we get going w
 - [Path helpers](#path-helpers)
 - [Glob patterns](#glob-patterns)
 - [ConfigMap and Secrets utility functions](#configmap-and-secrets-utility-functions)
-- [Secrets](#secrets)
+- [Encoding](#encoding)
 - [Lines](#lines)
 
 <!-- tocstop -->
@@ -163,9 +163,9 @@ data:
 {{ (.Files.Glob "bar/*").AsSecrets | indent 2 }}
 ```
 
-## Secrets
+## Encoding
 
-When working with a Secret resource, you can import a file and have the template base-64 encode it for you:
+You can import a file and have the template base-64 encode it to ensure successful transmission:
 
 ```yaml
 apiVersion: v1