The XML comment is missing the starting <summary> tag:
```
/// Gets the store model from the specified DbModel.
/// </summary>
/// <param name="model">An instance of a class that implements IEdmModelAdapter (ex. DbModel).</param>
/// <returns>An instance of EdmModel that represents the store model.</returns>
```
This is reported as an error in Intellisense:
```
XML comment contains invalid XML: End tag 'summary' does not match start tag 'doc'.
```
Comments: Verified. This was fix in changeset f8a672943ba9f607c9c65a4413cedc10d22d26f2
```
/// Gets the store model from the specified DbModel.
/// </summary>
/// <param name="model">An instance of a class that implements IEdmModelAdapter (ex. DbModel).</param>
/// <returns>An instance of EdmModel that represents the store model.</returns>
```
This is reported as an error in Intellisense:
```
XML comment contains invalid XML: End tag 'summary' does not match start tag 'doc'.
```
Comments: Verified. This was fix in changeset f8a672943ba9f607c9c65a4413cedc10d22d26f2