@capacitor/core 7.4.3 → 7.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/http.md CHANGED
@@ -212,7 +212,7 @@ Make a Http DELETE Request to a server using native libraries.
212
212
  | **`data`** | <code>any</code> | Additional data received with the Http response. |
213
213
  | **`status`** | <code>number</code> | The status code received from the Http response. |
214
214
  | **`headers`** | <code><a href="#httpheaders">HttpHeaders</a></code> | The headers received from the Http response. |
215
- | **`url`** | <code>string</code> | The response URL recieved from the Http response. |
215
+ | **`url`** | <code>string</code> | The response URL received from the Http response. |
216
216
 
217
217
 
218
218
  #### HttpHeaders
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/core",
3
- "version": "7.4.3",
3
+ "version": "7.4.5",
4
4
  "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5
5
  "homepage": "https://capacitorjs.com",
6
6
  "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -186,7 +186,7 @@ export interface HttpResponse {
186
186
  */
187
187
  headers: HttpHeaders;
188
188
  /**
189
- * The response URL recieved from the Http response.
189
+ * The response URL received from the Http response.
190
190
  */
191
191
  url: string;
192
192
  }