From 7dbf2ef7b35fae30e0485ee88122773748549d8a Mon Sep 17 00:00:00 2001 From: Wade Pickett Date: Mon, 16 Jan 2023 15:30:19 -0800 Subject: [PATCH] Corrected and tested sample 3 fix (#28111) --- aspnetcore/grpc/configuration/sample/GrcpService/Startup3.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/grpc/configuration/sample/GrcpService/Startup3.cs b/aspnetcore/grpc/configuration/sample/GrcpService/Startup3.cs index 97aeba9e4b..2a8d619fd4 100644 --- a/aspnetcore/grpc/configuration/sample/GrcpService/Startup3.cs +++ b/aspnetcore/grpc/configuration/sample/GrcpService/Startup3.cs @@ -18,7 +18,7 @@ namespace GrcpService { services.AddGrpc(options => { - options.Inteceptors.Add(); + options.Interceptors.Add(); }); services.AddSingleton(); }