diff options
author | Felipe Cury <flpcury@gmail.com> | 2017-05-18 07:40:42 -0300 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-05-18 12:40:42 +0200 |
commit | 064cbde932f135b37ddb615733a0d0e1940e78a9 (patch) | |
tree | 7a902518997f0559894d77c16cc5857f25c3e7e3 | |
parent | 9ccd1ee05ade8f2b76d8c473f34695b775330d31 (diff) |
[java/en-us] Fix typo (#2708)
-rw-r--r-- | java.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java.html.markdown b/java.html.markdown index 3ec938ef..4a3e6312 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -451,7 +451,7 @@ public class LearnJava { // Try-with-resources (Java 7+) // Try-catch-finally statements work as expected in Java but in Java 7+ // the try-with-resources statement is also available. Try-with-resources - // simplifies try-catch-finally statements be closing resources + // simplifies try-catch-finally statements by closing resources // automatically. // In order to use a try-with-resources, include a an instance of a class |