docs: fixed typo

This commit is contained in:
Abraham Ugbeshe
2021-07-04 20:08:55 +01:00
parent 44d31b4d83
commit e3dff3975b
4 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2020 Medusajs Copyright (c) 2021 Medusajs
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@@ -91,6 +91,6 @@ The Medusa repository is a mono-repository managed using Lerna. Lerna allows us
## Licensed ## Licensed
Licended under the [MIT License](https://github.com/medusajs/medusa/blob/master/LICENSE) Licensed under the [MIT License](https://github.com/medusajs/medusa/blob/master/LICENSE)
## Thank you! ## Thank you!

View File

@@ -35,7 +35,7 @@ Body
} }
``` ```
The endpoint responds with `200 OK` on succesful signups. If a signup for an already in stock item is attempted the endpoint will have a 400 response code. The endpoint responds with `200 OK` on successful signups. If a signup for an already in stock item is attempted the endpoint will have a 400 response code.
## Restock events ## Restock events

View File

@@ -36,7 +36,7 @@ The steps can be done in any order. The standard path would probably be:
Assuming that shipping methods are static within each region we can display all shipping methods at checkout time. If shipping is dynamically calculated the price of the shipping method may change, we will ask the fulfillment provider for new rates. Assuming that shipping methods are static within each region we can display all shipping methods at checkout time. If shipping is dynamically calculated the price of the shipping method may change, we will ask the fulfillment provider for new rates.
Payment details can be entered at any point as long as the final amount is known. If the final amount changes afer the payment details are entered the payment method may therefore be invalidated. Payment details can be entered at any point as long as the final amount is known. If the final amount changes after the payment details are entered the payment method may therefore be invalidated.
Within the store UI you could imagine each step being taken care of by a single button click, which calls all endpoints. Within the store UI you could imagine each step being taken care of by a single button click, which calls all endpoints.