Skip to content
Merged

Fix typo #25310

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This error occurs when you try to call a method or access a class member that do

## Example

The following example generates CS1061 because `Person` does not have a `DisplayName` method. It does have a method that is called `WriteSomething`. Perhaps that is what the author of this source code meant to write.
The following example generates CS1061 because `Person` does not have a `DisplayName` method. It does have a method that is called `WriteName`. Perhaps that is what the author of this source code meant to write.

```csharp
public class Person
Expand Down