Skip to content

Commit ae98766

Browse files
committed
Address feedback
1 parent 5596289 commit ae98766

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ In this tutorial, you learn how to:
7878
options.Connect(Environment.GetEnvironmentVariable("ConnectionString"))
7979
// Load all keys that start with `TestApp:`.
8080
.Select("TestApp:*")
81-
// Configure to reload configuration if the registered key 'TestApp:Settings:Sentinel' is modified.
81+
// Configure to reload the key 'TestApp:Settings:Message' if it is modified.
8282
.ConfigureRefresh(refresh =>
8383
{
8484
refresh.Register("TestApp:Settings:Message")
85-
.SetCacheExpiration(TimeSpan.FromSeconds(10));
85+
.SetCacheExpiration(TimeSpan.FromSeconds(10));
8686
});
8787

8888
_refresher = options.GetRefresher();

0 commit comments

Comments
 (0)