diff --git a/README.md b/README.md index 9ed4ae52c..25460fe0c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ## Parse For Flutter! Hi, this is a Flutter plugin that allows communication with a Parse Server, (https://parseplatform.org) either hosted on your own server or another, like (http://Back4App.com). -This is a work in project and we are consistently updating it. Please let us know if you think anything needs changing/adding, and more than ever, please do join in on this project (Even if it is just to improve our documentation. +This is a work in progress and we are consistently updating it. Please let us know if you think anything needs changing/adding, and more than ever, please do join in on this project. (Even if it is just to improve our documentation) ## Join in! Want to get involved? Join our Slack channel and help out! (http://flutter-parse-sdk.slack.com) @@ -98,7 +98,7 @@ The features available are:- * Array Operators ## Custom Objects -You can create your own ParseObjects or convert your existing objects into Parse Objects by doing the following: +You can create your own `ParseObjects` or convert your existing objects into Parse Objects by doing the following: ```dart class DietPlan extends ParseObject implements ParseCloneable { @@ -128,7 +128,7 @@ var randomInt = dietPlan.get('RandomInt'); ``` ## Save objects using pins -You can now save an object by calling .pin() on an instance of an object +You can now save an object by calling `.pin()` on an instance of an object ```dart dietPlan.pin();