Skip to content

Commit cf0ed68

Browse files
ashbzmievsa
andauthored
Fix typos in examples of declaring version changes within the version bundle (#266)
Co-authored-by: Stanislav Zmiev <zmievsa@gmail.com>
1 parent 1a0dffc commit cf0ed68

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/concepts/version_changes.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ from .v2023_02_10 import RemoveTaxIDEndpoints
3939

4040
versions = VersionBundle(
4141
HeadVersion(),
42-
Version("2023-02-10"),
43-
RemoveTaxIDEndpoints,
42+
Version("2023-02-10", RemoveTaxIDEndpoints),
4443
Version("2022-11-16"),
4544
)
4645
```
@@ -64,8 +63,7 @@ from .v2023_02_10 import RemoveTaxIDEndpoints
6463

6564
versions = VersionBundle(
6665
HeadVersion(),
67-
Version("2023-02-10"),
68-
RemoveTaxIDEndpoints,
66+
Version("2023-02-10", RemoveTaxIDEndpoints),
6967
Version("2022-11-16"),
7068
)
7169
```

0 commit comments

Comments
 (0)