Chapter 7: let convert, page 186

The code needs to be updated from:

let convert: [String: UInt] = [
    "abc": 2, "def": 3, "ghi": 4,
    "jkl": 5, "mno": 6, "pqrs": 7,
    "tuv": 8, "wxyz": 9
  ]

to:

let keyMap: [String: UInt] = [
    "abc": 2, "def": 3, "ghi": 4,
    "jkl": 5, "mno": 6, "pqrs": 7,
    "tuv": 8, "wxyz": 9
  ]

which is consistent with the sample project.

hi @dfrobison,
that’s a nice catch, in the latest update it is on page 155,

@chrisrazeware could you please look at that,

cheers,

Jayant

This topic was automatically closed after 166 days. New replies are no longer allowed.