diff --git a/CompilerOptimizations.md b/CompilerOptimizations.md index cd9251341..023708d8b 100644 --- a/CompilerOptimizations.md +++ b/CompilerOptimizations.md @@ -57,7 +57,7 @@ Gc compiler does global escape analysis across function and package boundaries. ### Function Inlining -Only short and simple functions are inlined. To be inlined a function must contain less than ~40 expressions and does not contain complex things like function calls, loops, labels, closures, `panic`'s, `recover`'s, `select`'s, `switch`'es, etc. +Only short and simple functions are inlined. To be inlined a function must contain less than ~40 expressions and does not contain complex things like loops, labels, closures, `panic`'s, `recover`'s, `select`'s, `switch`'es, etc. * **gc:** 1.0+ * **gccgo:** -O1 and above.