Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Sources/Conference/Components/Schedule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ struct Schedule: Component {
}
Table(header: headerRow) {
TableRow {
TableCell("09:00 - 09:45").class("text-center font-weight-bold")
TableCell("09:00 - 10:00").class("text-center font-weight-bold")
TableCell("Breakfast and Registration")
}
TableRow {
TableCell("09:45 - 09:50").class("text-center font-weight-bold")
TableCell("10:00 - 10:15").class("text-center font-weight-bold")
TableCell("Welcome")
}
TableRow {
TableCell("09:50 - 10:40").class("text-center font-weight-bold")
TableCell("10:15 - 10:40").class("text-center font-weight-bold")
createTalkRow(speakerName: "Ben Cohen")
}
TableRow {
Expand Down
2 changes: 1 addition & 1 deletion Sources/Conference/Models/Talk.swift
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ struct AllTalks {
id: 21,
title: "Keynote",
description: ComponentGroup {
Paragraph("A special keynote presentation from the Swift team.")
Paragraph("A special keynote presentation from the Swift Core Team.")
},
speakerNames: ["Ben Cohen"],
order: 21
Expand Down