Skip to content

Commit 7c8f0a5

Browse files
authored
Fix a few typos found while reading the code. (#1318)
1 parent 7e0ef7d commit 7c8f0a5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/OpenAIExamples/WebRTCOpenAI/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// demo so if not provided by the OS then ChatGPT will end up talking to itself.
1010
//
1111
// NOTE: As of 24 Dec 2024 the official OpenAI dotnet SDK is missing the realtime
12-
// models that represent the JSON datachannel messages. As such some ruidimentary
12+
// models that represent the JSON datachannel messages. As such some rudimentary
1313
// models have been created.
1414
// The official SDK is available at https://github.com/openai/openai-dotnet.
1515
// The OpenAI API realtime server events reference is available at
@@ -22,7 +22,7 @@
2222
// If you don't want to pass your OpenAI API key to this app an alternative approach is
2323
// to create an ephemeral secret using the curl comamnd below and then hard code it into
2424
// the application.
25-
// NOTE each epehmeral key seems like it can ONLY be used once:
25+
// NOTE each ephemeral key seems like it can ONLY be used once:
2626
// curl -v https://api.openai.com/v1/realtime/sessions ^
2727
// --header "Authorization: Bearer %OPENAI_TOKEN%" ^
2828
// --header "Content-Type: application/json" ^

src/app/Media/Codecs/AudioEncoder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public List<AudioFormat> SupportedFormats
7070
/// </summary>
7171
/// <param name="includeLinearFormats">If set to true the linear audio formats will be added
7272
/// to the list of supported formats. The reason they are only included if explicitly requested
73-
/// is they are not very popular for other VoIP systems and thereofre needlessly pollute the SDP.</param>
73+
/// is they are not very popular for other VoIP systems and therefore needlessly pollute the SDP.</param>
7474
public AudioEncoder(bool includeLinearFormats = false, bool includeOpus = false)
7575
{
7676
if (includeLinearFormats)

src/sys/TypeExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static class TypeExtensions
5151
private static readonly char[] hexmap = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
5252

5353
/// <summary>
54-
/// Gets a value that indicates whether or not the collection is empty.
54+
/// Gets a value that indicates whether or not the string is empty.
5555
/// </summary>
5656
public static bool IsNullOrBlank(this string s)
5757
{

0 commit comments

Comments
 (0)