Fix broken absolute/relative link in Playground Editor (#1025)

Summary:
The correct link is https://yogalayout.com/docs/absolute-relative-layout
The current link leads to a broken page https://yogalayout.com/docs/absolute-position

Pull Request resolved: https://github.com/facebook/yoga/pull/1025

Reviewed By: yungsters

Differential Revision: D23031145

Pulled By: yungsters

fbshipit-source-id: 7adaf4856d38546f2f75b47912edd7dcc23da294
This commit is contained in:
Joshua Yuan
2022-10-04 08:02:30 -07:00
committed by Facebook GitHub Bot
parent e1b401ca36
commit 68c038579c

View File

@@ -308,7 +308,7 @@ export default class Editor extends Component<Props> {
))}
<h2>
Position Type
<InfoText doclink="/docs/absolute-position">
<InfoText doclink="/docs/absolute-relative-layout">
Relative position offsets the node from it's calculated
position. Absolute position removes the node from the flexbox
flow and positions it at the given position.