Skip to content

Commit 4a3d69c

Browse files
authored
Merge pull request #1137 from mzmgh/patch-1
Update unit-test-basics.md
2 parents 5e8a353 + 4330780 commit 4a3d69c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/test/unit-test-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ In this topic, we use the development of a fictional application called `MyBank`
5454

5555
- `CheckingAccount.cs` contains the `CheckingAccount` class that implements the `IAccounts` interface for a checking account.
5656

57-
We know from experience that one thing a withdrawal from a checking account must do is to make sure that the amount withdrawn is less than the account balance. So we override the `IAccount.Withdaw` method in `CheckingAccount` with a method that checks for this condition. The method might look like this:
57+
We know from experience that one thing a withdrawal from a checking account must do is to make sure that the amount withdrawn is less than the account balance. So we override the `IAccount.Withdraw` method in `CheckingAccount` with a method that checks for this condition. The method might look like this:
5858

5959
```csharp
6060
public void Withdraw(double amount)

0 commit comments

Comments
 (0)