summaryrefslogtreecommitdiff
path: root/public/java-segfault.md
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-01-25 22:59:27 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-01-25 22:59:27 -0500
commit2413c4d35298a603adb42140a64d68cbbd2be1fb (patch)
treeae608b9a3beea7fb5700698d7073b9b2a974f422 /public/java-segfault.md
parent47324331076bd3427c2781802e21f8f546b082b1 (diff)
Tidy up, use unicode … when appropriate.
Diffstat (limited to 'public/java-segfault.md')
-rw-r--r--public/java-segfault.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/java-segfault.md b/public/java-segfault.md
index 4a4e32e..48a6872 100644
--- a/public/java-segfault.md
+++ b/public/java-segfault.md
@@ -70,7 +70,7 @@ executed doesn't access any other methods or properties of `o`, then
it will go ahead and consider `o` eligible for garbage collection
before `m()` has finished running.
-That is normally a safe optimization to make... except for when a
+That is normally a safe optimization to make… except for when a
destructor method (`finalize()`) is defined for the object; the
destructor can have side effects, and Java has no way to know whether
it is safe for them to happen before `m()` has finished running.