diff --git a/Status-Methods.textile b/Status-Methods.textile index d294941..dfa7fdc 100644 --- a/Status-Methods.textile +++ b/Status-Methods.textile @@ -4,7 +4,11 @@ The methods below deal with showing, updating, and deleting status messages on T h3. showStatus() + Returns an object containing the status represented by the numerical ID passed in. + +Parameters + * id: (Required) The numerical ID of the status to retrieve.
@@ -21,4 +25,20 @@ print status["text"]
 
 
 h3. updateStatus()
+
 Updates your status on Twitter - requires authentication
+
+Parameters
+
+* status: (Required) The status message you're updating with.
+* in_reply_to: (Optional) An optional status ID that this message is in reply to.
+
+
+
+import tango
+
+# Instantiate with Basic (HTTP) Authentication
+twitter = tango.setup(authtype="Basic", username="example", password="example")
+status = twitter.updateStatus("See how easy this was?")
+
+
\ No newline at end of file