Skip to content

Commit

Permalink
Corrected incomplete accessor on sample method ThrowBasketDoesNotExist
Browse files Browse the repository at this point in the history
  • Loading branch information
SmithPlatts committed Feb 13, 2024
1 parent f8312c4 commit cacd472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labs/4-Add-Shopping-Basket/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ In previous labs, we have created a web site that shoppers can use to browser a
}

[DoesNotReturn]
rivate static void ThrowBasketDoesNotExist(string userId)
private static void ThrowBasketDoesNotExist(string userId)
=> throw new RpcException(new Status(StatusCode.NotFound, $"Basket with buyer ID {userId} does not exist"));
```

Expand Down

0 comments on commit cacd472

Please sign in to comment.