From fa8adde8181ccad740ed7fcfb92af1a5c43f9281 Mon Sep 17 00:00:00 2001 From: Luc Claustres Date: Wed, 23 Nov 2022 14:45:18 +0100 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fcb2563..2aacf0e 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ _You can also have a look at the [tests](./test) in order to have different use ## API `feathers-s3` consists of three parts: -* [Service](#service) that pvoides basic methods for using **S3** API. +* [Service](#service) that provides basic methods for using **S3** API. * [Middlewares](#middlewares) that provides an [Express middleware](http://expressjs.com/en/guide/using-middleware.html) to access an object from the store. * [Client](#client) that provides helper functions to simplify the `upload` and `download` logic for the client side. @@ -217,7 +217,7 @@ import { authenticate } from '@feathersjs/express' app.get('/s3-objects/*', authenticate('jwt'), getObject(service)) ``` -In this case, if you need to reference the object by the URL it will require you to add the JWT as a query parameter like this: ``. The JWT can then be extracted by a middleware: +In this case, if you need to reference the object by the URL it will require you to add the JWT as a query parameter like this: ``. The JWT can then be extracted by a middleware: ```js import { authenticate } from '@feathersjs/express'