Fix typo in example code (#19)

Summary:
The original code used a `leading` symbol that doesn't exist. The right one is `.leading`.

Pull Request resolved: https://github.com/facebookincubator/QuickLayout/pull/19

Reviewed By: yannickl

Differential Revision: D92039987

Pulled By: constantine-fry

fbshipit-source-id: 7d975c1fa082680b6cf2f8887cffa2e036961bd6
This commit is contained in:
Lluís Ulzurrun de Asanza Sàez 2026-02-03 08:03:48 -08:00 committed by meta-codesync[bot]
parent ac6a40b9e3
commit d1151e5648

View file

@ -17,7 +17,7 @@ class MyCellView: UIView {
var body: Layout {
HStack {
VStack(alignment: leading) {
VStack(alignment: .leading) {
titleLabel
Spacer(4)
subtitleLabel