diff --git a/docs/v8-migration-api.md b/docs/v8-migration-api.md
index ecf37df9e1..4c6eeb5c29 100644
--- a/docs/v8-migration-api.md
+++ b/docs/v8-migration-api.md
@@ -548,12 +548,12 @@ Most of the changes to our TypeScript-specific AST nodes are to reduce the diffe
}
```
-- Split `TSExpressionWithTypeArguments` into `TSClassImplements` and `TSInterfaceHeritage` ([#16731](https://github.com/babel/babel/pull/16731).
+- Split `TSExpressionWithTypeArguments` into `TSClassImplements` and `TSInterfaceHeritage` ([#16731](https://github.com/babel/babel/pull/16731)).
The new nodes also use `typeArguments` instead of `typeParameters` ([#17017](https://github.com/babel/babel/pull/17017)).
- ClassDeclaration
+ TSClassImplements
```ts
class C implements X {}
@@ -596,7 +596,7 @@ Most of the changes to our TypeScript-specific AST nodes are to reduce the diffe
- TSInterfaceDeclaration
+ TSInterfaceHeritage
```ts
interface I extends X {}