Skip to content

Commit

Permalink
Format missed files manually
Browse files Browse the repository at this point in the history
These files were not formatted by the dotnet format tool.
So, manually formatting it by hand!
  • Loading branch information
Nirmal4G committed Jun 4, 2021
1 parent 7c61d09 commit aa5f174
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 4 additions & 2 deletions Microsoft.Toolkit.Uwp.SampleApp/Models/Item.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ public class Item : BindableBase

public string Title
{
get { return _title; } set { Set(ref _title, value); }
get { return _title; }
set { Set(ref _title, value); }
}

private bool? _isFavorite = default(bool);

public bool? IsFavorite
{
get { return _isFavorite; } set { Set(ref _isFavorite, value); }
get { return _isFavorite; }
set { Set(ref _isFavorite, value); }
}

private DelegateCommand _toggleFavorite = default(DelegateCommand);
Expand Down
7 changes: 5 additions & 2 deletions UnitTests/UnitTests.UWP/Markdown/Parse/ParagraphTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -383,11 +383,14 @@ public void Paragraph_Entities()
♥
♦"),
new ParagraphBlock().AddChildren(
new TextRunInline { Text = @""" & ' < >     ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ " +
new TextRunInline
{
Text = @""" & ' < >     ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ " +
"¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô " +
"õ ö ÷ ø ù ú û ü ý þ ÿ Œ œ Š š Ÿ ƒ ˆ ˜ Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ Ν Ξ Ο Π Ρ Σ Τ Υ Φ Χ Ψ Ω α β γ δ ε ζ η θ ι κ λ " +
"μ ν ξ ο π ρ ς σ τ υ φ χ ψ ω ϑ ϒ ϖ       ‌ ‍ ‎ ‏ – — ‘ ’ ‚ “ ” „ † ‡ • … ‰ ′ ″ ‹ › ‾ ⁄ € ℑ ℘ ℜ ™ ℵ ← ↑ → ↓ ↔ ↵ ⇐ " +
"⇑ ⇒ ⇓ ⇔ ∀ ∂ ∃ ∅ ∇ ∈ ∉ ∋ ∏ ∑ − ∗ √ ∝ ∞ ∠ ∧ ∨ ∩ ∪ ∫ ∴ ∼ ≅ ≈ ≠ ≡ ≤ ≥ ⊂ ⊃ ⊄ ⊆ ⊇ ⊕ ⊗ ⊥ ⋅ ⌈ ⌉ ⌊ ⌋ 〈 〉 ◊ ♠ ♣ ♥ ♦" }));
"⇑ ⇒ ⇓ ⇔ ∀ ∂ ∃ ∅ ∇ ∈ ∉ ∋ ∏ ∑ − ∗ √ ∝ ∞ ∠ ∧ ∨ ∩ ∪ ∫ ∴ ∼ ≅ ≈ ≠ ≡ ≤ ≥ ⊂ ⊃ ⊄ ⊆ ⊇ ⊕ ⊗ ⊥ ⋅ ⌈ ⌉ ⌊ ⌋ 〈 〉 ◊ ♠ ♣ ♥ ♦"
}));
}
#pragma warning restore CS0618 // Type or member is obsolete
}
Expand Down

0 comments on commit aa5f174

Please sign in to comment.