Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spelling #145

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion Core/HTTPResponse.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
* each chunk. Please see the HTTPAsyncFileResponse class for an example of how to do this.
*
* The normal flow of events for an HTTPConnection while responding to a request is like this:
* - Send http resopnse headers
* - Send http response headers
* - Get data from response via readDataOfLength method.
* - Add data to asyncSocket's write queue.
* - Wait for asyncSocket to notify it that the data has been sent.
Expand Down
4 changes: 2 additions & 2 deletions Core/Responses/HTTPAsyncFileResponse.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* This is an asynchronous version of HTTPFileResponse.
* It reads data from the given file asynchronously via GCD.
*
* It may be overriden to allow custom post-processing of the data that has been read from the file.
* It may be overridden to allow custom post-processing of the data that has been read from the file.
* An example of this is the HTTPDynamicFileResponse class.
**/

Expand Down Expand Up @@ -51,7 +51,7 @@
*
* readOffset
* Represents the offset of the file descriptor.
* In other words, the file position indidcator for our read stream.
* In other words, the file position indicator for our read stream.
* It might be easy to think of it as the total number of bytes that have been read from the file.
* However, this isn't entirely accurate, as the setOffset: method may have caused us to
* jump ahead in the file (lseek).
Expand Down
2 changes: 1 addition & 1 deletion Core/WebSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
/**
* Subclass API
*
* These methods are designed to be overriden by subclasses.
* These methods are designed to be overridden by subclasses.
**/
- (void)didOpen;
- (void)didReceiveMessage:(NSString *)msg;
Expand Down
4 changes: 2 additions & 2 deletions Core/WebSocket.m
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ - (void)setDelegate:(id)newDelegate
**/
- (void)start
{
// This method is not exactly designed to be overriden.
// This method is not exactly designed to be overridden.
// Subclasses are encouraged to override the didOpen method instead.

dispatch_async(websocketQueue, ^{ @autoreleasepool {
Expand All @@ -255,7 +255,7 @@ - (void)start
**/
- (void)stop
{
// This method is not exactly designed to be overriden.
// This method is not exactly designed to be overridden.
// Subclasses are encouraged to override the didClose method instead.

dispatch_async(websocketQueue, ^{ @autoreleasepool {
Expand Down
2 changes: 1 addition & 1 deletion Vendor/CocoaAsyncSocket/GCDAsyncSocket.m
Original file line number Diff line number Diff line change
Expand Up @@ -6340,7 +6340,7 @@ - (void)ssl_startTLS
{
if (sslMinLevel || sslMaxLevel)
{
LogWarn(@"kCFStreamSSLLevel security option ignored. Overriden by "
LogWarn(@"kCFStreamSSLLevel security option ignored. Overridden by "
@"GCDAsyncSocketSSLProtocolVersionMin and/or GCDAsyncSocketSSLProtocolVersionMax");
}
else
Expand Down