Skip to content

Commit

Permalink
Merge pull request #396 from realm/ad/doc/updates-for-0.71.0/#344
Browse files Browse the repository at this point in the history
[Xamarin][Docs][Xamarin] Minor home page fixes.
  • Loading branch information
AndyDentFree committed Feb 15, 2016
2 parents 5043014 + 2d53965 commit 82a4e0c
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Doxygen/mainpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ Documentation
-------------
The documentation can be found at [realm.io/docs/xamarin/latest](https://realm.io/docs/xamarin/latest/).

The API reference is located at[realm.io/docs/xamarin/latest/api](https://realm.io/docs/xamarin/latest/api/).
The API reference is located at [realm.io/docs/xamarin/latest/api](https://realm.io/docs/xamarin/latest/api/).


Source
------
Source is available [on github](https://github.com/realm/realm-dotnet) along with the [issue tracker](https://github.com/realm/realm-dotnet/issues) you can use to report problems.
Source is available [on github](https://github.com/realm/realm-dotnet).


Minimal Sample
Expand All @@ -45,7 +45,7 @@ class MePersist : RealmObject
public int MyAwesomeness { get; set; }
}
/// put this code in an OnLoad or simple buttno press handler
/// put this code in an OnLoad or simple button-press handler
var _realm = Realm.GetInstance();
using (var trans = _realm.BeginWrite())
Expand All @@ -58,4 +58,9 @@ class MePersist : RealmObject
var numAwe = _realm.All<MePersist>().Count();
System.Diagnostics.Debug.WriteLine($"Created {numAwe} realm objects");
_realm.Close();
```
```


Problem reports and Feature requests
------
The [github issue tracker](https://github.com/realm/realm-dotnet/issues) can be used to report problems or make feature requests.

0 comments on commit 82a4e0c

Please sign in to comment.