Skip to content

Commit ff53cdc

Browse files
committed
chores: Remove extra semicolons from code blocks
1 parent 5b1bfa9 commit ff53cdc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
193193
Before:
194194

195195
```python
196-
emailpassword.asyncio.sign_up("[email protected]", "password");
196+
emailpassword.asyncio.sign_up("[email protected]", "password")
197197
```
198198

199199
After:
200200

201201
```python
202-
emailpassword.asyncio.sign_up("public", "[email protected]", "password");
202+
emailpassword.asyncio.sign_up("public", "[email protected]", "password")
203203
```
204204

205205
- Input for provider array change as follows:

0 commit comments

Comments
 (0)