Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions EssentialCSharp.Web/Views/Home/Home.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
<div class="row gx-5">
<div class="col-12 col-md-6">
<h3>The Comprehensive, Expert Guide to C# Language Programming</h3>
<div class="h5"><i>Written by Mark Michaelis with Eric Lippert & Kevin Bost</i></div>
<div class="h5"><i>Written by Mark Michaelis and Benjamin Michaelis with Eric Lippert & Kevin Bost</i></div>
<p>
Essential C# is a well-organized, no-fluff guide to C# for programmers at all levels of experience.
Reflecting the most important C# features from 3.0 through 8.0 and including modern programming patterns,
it will help you write code that&rsquo;s simple, powerful, robust, secure, and maintainable.
</p>
<p>
World-class C# expert Mark Michaelis presents a complete tutorial and reference for the entire language,
World-class C# expert Mark Michaelis and Benjamin Michaelis present a complete tutorial and reference for the entire language,
including expert coverage of key C# enhancements, C#&rsquo;s use with .NET Core/.NET Standard,
and cross-platform compilation. He illustrates key C# constructs with succinct examples,
and cross-platform compilation. They illustrates key C# constructs with succinct examples,
and presents best-practice coding guidelines.
</p>
</div>
Expand Down Expand Up @@ -111,4 +111,4 @@
</a>
</div>
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion EssentialCSharp.Web/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<head>
@{
const string imageUrl = "https://essentialcsharp.com/images/icon.png";
const string description = "Accelerate your development knowledge with C# expert Mark Michaelis' free, online comprehensive C# tutorial and reference that is updated through C# 11.0";
const string description = "Accelerate your development knowledge with C# expert Mark Michaelis and Benjamin Michaelis' free, online comprehensive C# tutorial and reference that is updated through C# 11.0";
string title = $"Essential C#{(string.IsNullOrEmpty(ViewBag.PageTitle) ? string.Empty : $": {ViewBag.PageTitle}")}";
}
<meta charset="utf-8" />
Expand Down