Skip to content

Commit a2678fe

Browse files
authored
typo: Langauge -> Language
1 parent afd6fac commit a2678fe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/porting/visual-cpp-porting-and-upgrading-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ In addition to changes that you can't avoid due to compiler errors, some changes
5757

5858
3. You might want to update some code to use new language features that simplify the code, improve the performance of your programs, or update the code to use modern libraries and conform to modern standards and best practices.
5959

60-
Once you've upgraded and tested your project, you might also want to consider improving your code further or plan the future direction of your code, or even reconsider the architecture of your project. Will it receive ongoing development work? Will it be important for your code to run on other platforms? If so, what platforms? C++ is a standardized langauge designed with portability and cross-platform development in mind, and yet the code for many Windows applications is strongly tied to the Windows platform. Do you want to refactor your code, to separate out those parts that are more tied to the Windows platform?
60+
Once you've upgraded and tested your project, you might also want to consider improving your code further or plan the future direction of your code, or even reconsider the architecture of your project. Will it receive ongoing development work? Will it be important for your code to run on other platforms? If so, what platforms? C++ is a standardized language designed with portability and cross-platform development in mind, and yet the code for many Windows applications is strongly tied to the Windows platform. Do you want to refactor your code, to separate out those parts that are more tied to the Windows platform?
6161

6262
What about your user interface? If you are using MFC, you might want to update the UI. Are you using any of the newer MFC features that were introduced in 2008 as a Feature Pack? If you just want to give your app a newer look and feel, without rewriting the entire app, you might consider using the ribbon APIs in MFC, or using some of new features of MFC.
6363

@@ -82,4 +82,4 @@ Alternatively, perhaps you now have new requirements, or you can foresee the nee
8282

8383
## See Also
8484

85-
[Visual C++](../visual-cpp-in-visual-studio.md)
85+
[Visual C++](../visual-cpp-in-visual-studio.md)

0 commit comments

Comments
 (0)