Corrected syntax for interface. (#32878)

Corrected syntax of interface. From Interface to interface (lowercase on first letter). 
If the first letter on the word interface is uppercase, this will produce an error on Visual Studio stating that: 

The type or namespace name 'Interface' could not be found (are you missing a using directive or an assembly reference?)
This commit is contained in:
Willy David Jr
2019-01-27 09:30:51 +08:00
committed by Randell Dawson
parent eef0d1e811
commit efff592bc6

View File

@ -32,7 +32,7 @@ As interfaces do not implement any logic by themselves, they are a great tool fo
Interface Example: Interface Example:
```csharp ```csharp
public Interface IUserFavoriteFood public interface IUserFavoriteFood
{ {
void AddFood(); void AddFood();
Task<User> EatFavoriteFood(int id); Task<User> EatFavoriteFood(int id);