diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ed556a57..69c7364b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 11deb0d50..e7f0c689d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/Sources/Pulse/RemoteLogger/RemoteLogger.swift b/Sources/Pulse/RemoteLogger/RemoteLogger.swift index 408d8f4f7..46f9ab49a 100644 --- a/Sources/Pulse/RemoteLogger/RemoteLogger.swift +++ b/Sources/Pulse/RemoteLogger/RemoteLogger.swift @@ -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 }