Skip to content

Commit 99b4b98

Browse files
authored
Fix typo (#4271)
* Fix typo * Fix typo
1 parent 268771a commit 99b4b98

File tree

2 files changed

+2
-2
lines changed
  • samples/snippets
    • csharp/VS_Snippets_CLR_System/system.Double.Parse/cs
    • visualbasic/VS_Snippets_CLR_System/system.Double.Parse/vb

2 files changed

+2
-2
lines changed

samples/snippets/csharp/VS_Snippets_CLR_System/system.Double.Parse/cs/Parse3.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
public class Temperature
66
{
77
// Parses the temperature from a string. Temperature scale is
8-
// indicated by 'F (for Fahrenheit) or 'C (for Celcius) at the end
8+
// indicated by 'F (for Fahrenheit) or 'C (for Celsius) at the end
99
// of the string.
1010
public static Temperature Parse(string s, NumberStyles styles,
1111
IFormatProvider provider)

samples/snippets/visualbasic/VS_Snippets_CLR_System/system.Double.Parse/vb/Parse3.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Imports System.Globalization
66

77
Public Class Temperature
88
' Parses the temperature from a string. Temperature scale is
9-
' indicated by 'F (for Fahrenheit) or 'C (for Celcius) at the end
9+
' indicated by 'F (for Fahrenheit) or 'C (for Celsius) at the end
1010
' of the string.
1111
Public Shared Function Parse(s As String, styles As NumberStyles, _
1212
provider As IFormatProvider) As Temperature

0 commit comments

Comments
 (0)