The following code provides a valid suggestion: - ```fsharp type Foo = { Name : string } let bar = { Nam = "Isaac" } ``` However the following does not: - ```fsharp let name = "Isaac" let fullName = nam + " Abraham" ``` I would like the compiler to apply the same suggestions whenever any symbols cannot be identified.