Skip to content
This repository was archived by the owner on Jul 2, 2022. It is now read-only.

Commit e588776

Browse files
committed
Fixed UTF8 issue in Readme & corrected spelling mistake in settings
1 parent 06c7a01 commit e588776

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CodeHub.Core/ViewModels/Repositories/ReadmeViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private string CreateHtmlFile(string data)
6565
var tmp = System.IO.Path.Combine(System.IO.Path.GetTempPath(), System.IO.Path.GetTempFileName() + ".html");
6666
using (var tmpStream = new System.IO.FileStream(tmp, System.IO.FileMode.Create))
6767
{
68-
var fs = new System.IO.StreamWriter(tmpStream);
68+
var fs = new System.IO.StreamWriter(tmpStream, Encoding.UTF8);
6969
var dataIndex = markup.IndexOf("{{DATA}}", StringComparison.Ordinal);
7070
fs.Write(markup.Substring(0, dataIndex));
7171
fs.Write(data);

CodeHub.iOS/Views/App/SettingsView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ private void CreateTable()
7373
//Assign the root
7474
var root = new RootElement(Title);
7575
root.Add(new Section("Account") { saveCredentials /*, pushNotifications */ });
76-
root.Add(new Section("Apperance") { showOrganizationsInEvents, showOrganizations, repoDescriptions, startupView });
76+
root.Add(new Section("Appearance") { showOrganizationsInEvents, showOrganizations, repoDescriptions, startupView });
7777
root.Add(new Section ("Internal") { deleteCache, usage });
7878
Root = root;
7979

lib/GitHubSharp

0 commit comments

Comments
 (0)