diff --git a/content/run_shopify_app_without_appbridge.md b/content/run_shopify_app_without_appbridge.md index 4d4357e..2f46bf6 100644 --- a/content/run_shopify_app_without_appbridge.md +++ b/content/run_shopify_app_without_appbridge.md @@ -162,8 +162,10 @@ export async function findShop(shopifyDomain: string) { After this let's set up the GraphQL schema for Genql, simply run the following command: -```bash -npx genql --endpoint "https://.myshopify.com/admin/api/2024-07/graphql.json" -S --output "app/lib/genql/generated.server" -H "X-Shopify-Access-Token: " --esm +```sh +npx genql -S --output "app/lib/genql/generated.server" \ + --endpoint "https://.myshopify.com/admin/api/2024-07/graphql.json" \ + -H "X-Shopify-Access-Token: " --esm ``` Replace the `.myshopify.com` and `` with some real data (you can also use the data from a test store, the command is just needed to generate the graphql schema). diff --git a/content/set_theory.md b/content/set_theory.md index 7cd9c15..460a78b 100644 --- a/content/set_theory.md +++ b/content/set_theory.md @@ -309,8 +309,8 @@ Formally it is defined as $A \times B = \\{ (a,b) ∣ a \in A, b \in B \\}$. $$ \begin{aligned} A &= \\{ 1, 2 \\} \\\\ -B &= \\{ 3, 4, 5 \\} \\\\ -A \times B &= \\{ (1,3), (1,4), (1,5), (2,3), (2,4), (2,5) \\} +B &= \\{ 3, 4 \\} \\\\ +A \times B &= \\{ (1,3), (1,4), (2,3), (2,4) \\} \end{aligned} $$