aboutsummaryrefslogtreecommitdiff
path: root/content/error-handling-and-go.article
diff options
context:
space:
mode:
Diffstat (limited to 'content/error-handling-and-go.article')
-rw-r--r--content/error-handling-and-go.article2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/error-handling-and-go.article b/content/error-handling-and-go.article
index 709b016..092addc 100644
--- a/content/error-handling-and-go.article
+++ b/content/error-handling-and-go.article
@@ -1,7 +1,7 @@
# Error handling and Go
12 Jul 2011
Tags: error, interface, type, technical
-Summary: If you have written any Go code you have probably encountered the built-in `error` type. Go code uses `error` values to indicate an abnormal state. For example, the `os.Open` function returns a non-nil `error` value when it fails to open a file.
+Summary: An introduction to Go errors.
Andrew Gerrand