iOS App Dev with SwiftUI Tutorials Typo

In the tutorial on SwiftUI there seems to be a Typo:

It says in Step 3 in the section: Managing State and Life Cycle > Managing State and Life Cycle

that one should add:
Code Block
MeetingHeaderView(secondsElapsed: scrumTimer.secondsElapsed, secondsRemaining: scrumTimer.secondsRemaining, scrumColor: scrum.color)


But it should be

Code Block
MeetingHeader(secondsElapsed: scrumTimer.secondsElapsed, secondsRemaining: scrumTimer.secondsRemaining, scrumColor: scrum.color)


Am I right with the assumption that this is a typo and how do I report it?

The URL to the tutorial is: https://developer.apple.com/tutorials/app-dev-training/managing-state-and-life-cycle

Am I right with the assumption that this is a typo and how do I report it?

As far as I checked the link, Step 3 shows:
Code Block
MeetingHeaderView(secondsElapsed: scrumTimer.secondsElapsed, secondsRemaining: scrumTimer.secondsRemaining, scrumColor: scrum.color)

which seems to be the right one.

I cannot find any definitions of MeetingHeader in that tutorial, so you may be mistaking something.

Or one possibility, you might be seeing an old version of the tutorial which might have been fixed recently.


Anyway, when you find something wrong in Apple's documentations, use Feedback Assistant to report it.
(You can find the link at the bottom on every page of Apple's developer site.)
Why do you think it should be MeetingHeader and not MeetingHeaderView ?
iOS App Dev with SwiftUI Tutorials Typo
 
 
Q