diff --git a/guide/english/cplusplus/goto/index.md b/guide/english/cplusplus/goto/index.md index 71dc6b7cd9..e43fdccdda 100644 --- a/guide/english/cplusplus/goto/index.md +++ b/guide/english/cplusplus/goto/index.md @@ -4,8 +4,8 @@ title: goto as a powerful utility # Intro to the use of goto and labels -goto is one of the most powerful yet highly underrated piece of logic in c++. Crazy amount of optimization can be achieved using goto, provided it is used properly. -It does that which it is named as. It goes to the mentioned occurence of the next label,wherever may it be. +goto is one of the most powerful, yet highly underrated piece of logic in C++. Crazy amount of optimization can be achieved using goto, provided it is used properly. +It does exactly what it is named as. It goes to the mentioned occurence of the next label, wherever may it be. # Terminology @@ -19,8 +19,8 @@ goto