Skip to content

Commit 0740fe9

Browse files
Fix errors in the table descriptions
1 parent 8cc0a1a commit 0740fe9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div style="font-size: 1em;">
22

3-
Last updated on 2021-12-08 21:47:17
3+
Last updated on 2021-12-08 21:50:22
44

55
</div>
66

@@ -69,6 +69,9 @@ model.
6969
<tr>
7070
<td style="text-align:left;width: 15em; "> name </td>
7171
</tr>
72+
<tr>
73+
<td style="text-align:left;width: 15em; "> status </td>
74+
</tr>
7275
</tbody>
7376
</table>
7477

@@ -79,7 +82,7 @@ model.
7982
<table class="table table-bordered table-striped table-hover table-condensed table-responsive" style="width: auto !important; margin-left: auto; margin-right: auto;">
8083
<thead>
8184
<tr>
82-
<th style="text-align:left;color: white !important;background-color: gray !important;font-size: 20px;"> Company </th>
85+
<th style="text-align:left;color: white !important;background-color: gray !important;font-size: 20px;"> Position </th>
8386
</tr>
8487
</thead>
8588
<tbody>

code/RMarkdown/README.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ dbTables <- vector("list", length = 4)
7272
7373
names(dbTables) <- c("Company", "Position", "Employee", "Job")
7474
75-
dbTables[["Company"]] <- data.frame(Company = c("guid", "name"))
75+
dbTables[["Company"]] <- data.frame(Company = c("guid", "name", "status"))
7676
77-
dbTables[["Position"]] <- data.frame(Company = c("guid", "name", "status"))
77+
dbTables[["Position"]] <- data.frame(Position = c("guid", "name", "status"))
7878
7979
dbTables[["Employee"]] <- data.frame(Employee = c("guid", "state", "status"))
8080

0 commit comments

Comments
 (0)