Skip to content

Commit

Permalink
fix property/method confusion in Getting-started.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrxx99 authored Feb 24, 2024
1 parent 52e3f88 commit af58760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public async Task ExampleTest()

## Properties

To intercept a method simply use the `Property` method on the `Nasal` class. The `IPropertyPlug<T>` instance that can be used to specify delegates to be invoked instead of the getter and/or setter methods for the property. To intercept the getter use the `Returns` method.
To intercept a property simply use the `Property` method on the `Nasal` class. The `IPropertyPlug<T>` instance that can be used to specify delegates to be invoked instead of the getter and/or setter methods for the property. To intercept the getter use the `Returns` method.

```C#
public class HasPublicProperty
Expand Down

0 comments on commit af58760

Please sign in to comment.