Skip to content

Commit 100b630

Browse files
committed
Merge branch 'master' of github.com:AJMitev/FileTypeChecker
2 parents 7230ea2 + 13a7f80 commit 100b630

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

FileTypeChecker.Web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ All validation attributes should be used over IFormFile interface and can be use
2626

2727
```c#
2828
[HttpPost("filesUpload")]
29-
public IActionResult UploadFiles([AllowImageOnly] IFormFile imageFile, [AllowArchiveOnly] IFormFilarchiveFile)
29+
public IActionResult UploadFiles([AllowImageOnly] IFormFile imageFile, [AllowArchiveOnly] IFormFile archiveFile)
3030
{
3131
// Some cool stuf here ...
3232
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ With web package you will recive access to our validation attributes that will g
7171

7272
```c#
7373
[HttpPost("filesUpload")]
74-
public IActionResult UploadFiles([AllowImageOnly] IFormFile imageFile, [AllowArchiveOnly] IFormFilarchiveFile)
74+
public IActionResult UploadFiles([AllowImageOnly] IFormFile imageFile, [AllowArchiveOnly] IFormFile archiveFile)
7575
{
7676
// Some cool stuf here ...
7777
}

0 commit comments

Comments
 (0)