Agile Web Development with Rails 6: css selector typo mistake (pg 147)

code example shows:

tfoot {
  th, th.price {
     ..
  }
  ...
  th.price {
    border-top: solid thin;
  }
}

The th.price should be td.price for the css to actually match the screenshot shown in the book.