Skip to content

Commit

Permalink
Lowercase instance methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
randymarsh77 committed Jan 23, 2017
1 parent f0c62aa commit e6bd440
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/audiostream.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Streams

public extension Socket
{
public func CreateAudioStream() -> ReadableStream<AudioData>
public func createAudioStream() -> ReadableStream<AudioData>
{
let stream = Streams.Stream<AudioData>()
var description: AudioStreamBasicDescription? = nil
Expand Down
2 changes: 1 addition & 1 deletion Sources/convert.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ struct ACDataSupplierUserData

public extension IReadableStream where ChunkType == AudioData
{
public func Convert(to: AudioFormatID) -> ReadableStream<AudioData>
public func convert(to: AudioFormatID) -> ReadableStream<AudioData>
{
var converterCreated = false
let converter = UnsafeMutablePointer<AudioConverterRef?>.allocate(capacity: 1)
Expand Down

0 comments on commit e6bd440

Please sign in to comment.