Update EXAMPLES.md

This commit is contained in:
Junegunn Choi
2013-08-13 00:10:42 +09:00
parent 5e6e60d620
commit 3c4b7af9b5

View File

@@ -342,7 +342,7 @@ static double pi = 3.14;
```
So far, so good. However, this rule is not sufficient to handle more complex
cases involving C++ templates or Java generics. Take the following examples:
cases involving C++ templates or Java generics. Take the following example:
```c
const char* str = "Hello";
@@ -380,7 +380,7 @@ static double pi = 3.14;
static std::map<std::string, float>* scores = pointer;
```
Okay, now press `gv<Enter>=` and voila!
We're right on track, now press `gv<Enter>=` and voila!
```c
const char* str = "Hello";