From 8641c29a0854ba32b7a15786e0d74754ae430558 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Wed, 29 Jul 2015 19:50:04 -0600 Subject: [PATCH] Update 07-Considering_Threadability.md --- 07-Considering_Threadability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07-Considering_Threadability.md b/07-Considering_Threadability.md index 5c1f695..663d138 100644 --- a/07-Considering_Threadability.md +++ b/07-Considering_Threadability.md @@ -6,7 +6,7 @@ Global data leads to unintended side effects between functions and can make code ### Statics -Besides being global data, statics are not always constructed and deconstructed as you would expect. This is particularly true in cross-platform environments. See for example, [this g++ bug](9https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66830) regarding the order of destruction of shared static data loaded from dynamic modules. +Besides being global data, statics are not always constructed and deconstructed as you would expect. This is particularly true in cross-platform environments. See for example, [this g++ bug](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66830) regarding the order of destruction of shared static data loaded from dynamic modules. ### Shared Pointers