Update documentation to state that the Name() method on error is now a field
diff --git a/site/_docs/go_client_reference.md b/site/_docs/go_client_reference.md
index 43de2cd..2ce05f5 100644
--- a/site/_docs/go_client_reference.md
+++ b/site/_docs/go_client_reference.md
@@ -180,7 +180,7 @@
 The Go client comes with support for retrieving the error code when an error occurs. This is extremely useful when
 you want to take specific action when a particular type of error occurs.
 
-If the error returned is a ResponseError, calling the `Name()` method on the error will return the appropriate
+If the error returned is a ResponseError, the `Name`field on the error will return the appropriate
 Apache Phoenix error code:
 
 {% highlight go %}
@@ -195,7 +195,7 @@
 }
 
 // Print the Apache Phoenix error code
-fmt.Println(perr.Name()) // Prints: table_undefined
+fmt.Println(perr.Name) // Prints: table_undefined
 {% endhighlight %}
 
 ## Version Compatibility