Skip to content

Commit

Permalink
Update introduction.md
Browse files Browse the repository at this point in the history
Added missed "static" keyword and parameter in Convert method
  • Loading branch information
HannaBorodina authored Jul 20, 2023
1 parent 7d5a806 commit c37b297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/raindrops/.approaches/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For determining that, you will use the the [remainder operator][remainder-operat
## Approach: `if` statements

```csharp
public string Convert()
public static string Convert(int number)
{
var drops = "";
if (number % 3 == 0)
Expand Down

0 comments on commit c37b297

Please sign in to comment.