Skip to content

Commit

Permalink
Fix: resolved a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaminudel committed Mar 21, 2013
1 parent d6264bb commit a39f991
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions TDDMicroExercises/CSharp/TDDMicroExercises.csproj
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
Expand Down Expand Up @@ -55,7 +55,7 @@
<Compile Include="TurnTicketDispenser\TicketDispenser.cs" />
<Compile Include="TurnTicketDispenser\TurnNumberSequence.cs" />
<Compile Include="TurnTicketDispenser\TurnTicket.cs" />
<Compile Include="UnicodeFileToHtmTextConverter\UnicodeFileToHtmTextConverter.cs" />
<Compile Include="UnicodeFileToHtmlTextConverter\UnicodeFileToHtmlTextConverter.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
Expand Down
@@ -1,14 +1,14 @@
using System.IO;
using System.Web;

namespace TDDMicroExercises.UnicodeFileToHtmTextConverter
namespace TDDMicroExercises.UnicodeFileToHtmlTextConverter
{
public class UnicodeFileToHtmTextConverter
public class UnicodeFileToHtmlTextConverter
{
private string _fullFilenameWithPath;


public UnicodeFileToHtmTextConverter(string fullFilenameWithPath)
public UnicodeFileToHtmlTextConverter(string fullFilenameWithPath)
{
_fullFilenameWithPath = fullFilenameWithPath;
}
Expand Down

0 comments on commit a39f991

Please sign in to comment.