From 4bf231952350662b615f0eb557345ffff003c0c8 Mon Sep 17 00:00:00 2001 From: Alexander Batishchev Date: Wed, 27 Sep 2017 16:48:29 -0700 Subject: [PATCH] Update model-binding.md Fixing type `CancelationToken` -> `CancellationToken` --- aspnetcore/mvc/models/model-binding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/models/model-binding.md b/aspnetcore/mvc/models/model-binding.md index 09d4f889cf..d21584fb5a 100644 --- a/aspnetcore/mvc/models/model-binding.md +++ b/aspnetcore/mvc/models/model-binding.md @@ -65,7 +65,7 @@ Additionally, there are some special data types that MVC must consider when perf * `IFormFile`, `IEnumerable`: One or more uploaded files that are part of the HTTP request. -* `CancelationToken`: Used to cancel activity in asynchronous controllers. +* `CancellationToken`: Used to cancel activity in asynchronous controllers. These types can be bound to action parameters or to properties on a class type.