Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Aug 20, 2022
1 parent d52500a commit fc9d938
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: |
python3 -m pip install --upgrade pip
python3 -m pip install codespell
codespell --ignore-words-list="hart,inout,msdos,sur" --skip="./.build/*,./Tests/PulseTests/Resources.swift"
codespell --ignore-words-list="hart,inout,msdos,sur" --skip="./.build/*,./Tests/PulseTests/Resources.swift,./Sources/PulseUI/Mocks/*"
build-demo-ios:
name: Build Demo (iOS)
runs-on: macOS-12
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ See [Introducing Pulse 2.0](https://kean.blog/post/pulse-2) to learn about the n
*13 Sep, 2021*

- Add support to httpBodyStreamData - [#37](https://github.com/kean/Pulse/pull/37), thanks to [Klemen Košir](https://github.com/klemenkosir)
- Fix an issue whre cURL share was using request body instead of the response body - [#38](https://github.com/kean/Pulse/pull/38), thanks to [BB9z](https://github.com/BB9z)
- Fix an issue where cURL share was using request body instead of the response body - [#38](https://github.com/kean/Pulse/pull/38), thanks to [BB9z](https://github.com/BB9z)

## Pulse 0.17.0

Expand Down Expand Up @@ -421,7 +421,7 @@ macOS-only release
- Add badge to details screen with message status
- In addition to JSON, response body viewer now supports more content types: plain text, images
- You can now copy HTTP header keys and values
- Copy or share respones/request in Network Inspector
- Copy or share response/request in Network Inspector
- In case of a URLError, display both the code and the short description in the list
- Network tab. Search based on method, path, parameters - anything
- Add powerful search to Response view
Expand Down
2 changes: 1 addition & 1 deletion Sources/Pulse/RemoteLogger/RemoteLogger.swift
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public final class RemoteLogger: RemoteLoggerConnectionDelegate {
}

// The buffer is used to cover the time between the app launch and the
// iniitial (automatic) connection to the server.
// initial (automatic) connection to the server.
queue.asyncAfter(deadline: .now() + .seconds(3)) { [weak self] in
self?.buffer = nil
}
Expand Down

0 comments on commit fc9d938

Please sign in to comment.