diff --git a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm
index f5793f5dffc..8025217bb3c 100644
--- a/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm
+++ b/doc/org.eclipse.cdt.doc.user/concepts/cdt_c_whatsnew.htm
@@ -38,7 +38,7 @@ may contain other information.
Rename in File
To make rename refactoring work interactively in the editor,
- position the cursor on an identifier in the editor and hit Cntl-1
+ position the cursor on an identifier in the editor and hit Ctrl-1
(the hotfix key). Choose "Rename in file."
Changing an identifier simultaneously changes all other references to that identifier.
@@ -263,7 +263,7 @@ may contain other information.
Context menu actions on Working Sets in the Project Explorer for activating and building configurations
- 
+ 
For more details, see the working sets
@@ -306,8 +306,7 @@ may contain other information.
RSE EFS projects and EFS resources are supported.
Improved performance.
-
+
In the Problems View, external file locations (outside of the workspace) have been moved to the Location
column and associated with "Open External Location" menu.
@@ -387,6 +386,7 @@ may contain other information.
|
-->
+
Back to Top
CDT 5.0 - New and Noteworthy
diff --git a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_import.htm b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_import.htm
index a0b3d43cb8d..440a8cde47f 100644
--- a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_import.htm
+++ b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_import.htm
@@ -42,7 +42,7 @@ function newWin(url) {
In the Location field, specify the path to the existing files for your project.
From the Project types list, expand Makefile Project and select Empty Project..
- - To have sample source and a makefile created in your existing directory, select Hello World C++ Project
+
- To have sample source and a makefile created in your existing directory, select Hello World C++ Project
Make sure a toolchain is selected.
diff --git a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_newcpp.htm b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_newcpp.htm
index ace9f5c8287..ee518037568 100644
--- a/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_newcpp.htm
+++ b/doc/org.eclipse.cdt.doc.user/getting_started/cdt_w_newcpp.htm
@@ -47,14 +47,14 @@ using namespace std;
int main () {
// Say Hello five times
- for (int index = 0; index < 5; ++index)
- cout << "HelloWorld!" << endl;
+ for (int index = 0; index < 5; ++index)
+ cout << "HelloWorld!" << endl;
char input = 'i';
- cout << "To exit, press 'm'" << endl;
+ cout << "To exit, press 'm'" << endl;
while(input != 'm') {
cin >> input;
- cout << "You just entered " << input
- << " you need to enter m to exit." << endl;
+ cout << "You just entered " << input
+ << " you need to enter m to exit." << endl;
}
exit(0);
}
@@ -93,4 +93,4 @@ can build your HelloWorld project, you must create a makefile.