Skip to content

Commit aa5f174

Browse files
committed
Format missed files manually
These files were not formatted by the dotnet format tool. So, manually formatting it by hand!
1 parent 7c61d09 commit aa5f174

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

Microsoft.Toolkit.Uwp.SampleApp/Models/Item.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ public class Item : BindableBase
1212

1313
public string Title
1414
{
15-
get { return _title; } set { Set(ref _title, value); }
15+
get { return _title; }
16+
set { Set(ref _title, value); }
1617
}
1718

1819
private bool? _isFavorite = default(bool);
1920

2021
public bool? IsFavorite
2122
{
22-
get { return _isFavorite; } set { Set(ref _isFavorite, value); }
23+
get { return _isFavorite; }
24+
set { Set(ref _isFavorite, value); }
2325
}
2426

2527
private DelegateCommand _toggleFavorite = default(DelegateCommand);

UnitTests/UnitTests.UWP/Markdown/Parse/ParagraphTests.cs

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

0 commit comments

Comments
 (0)