Skip to content

Fix Grammar, Formatting & Terminology #1509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .husky/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ if [ -n "$(git status --porcelain)" ]; then
git add .

# Create a commit with a descriptive message
git commit -m "Auto-fix: Update breadcrumbs, spelling dictionary and other automated fixes"
git commit -m "Auto-fix: Updated breadcrumbs, spelling dictionary and other automated fixes"

echo "✅ Changes committed automatically. Continuing with push..."
else
echo "✅ No changes needed. Continuing with push..."
fi
fi
2 changes: 1 addition & 1 deletion lib/growthbook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { GrowthBook } from '@growthbook/growthbook-react';

export const growthbook = new GrowthBook({
apiHost: process.env.NEXT_PUBLIC_GROWTHBOOK_API_HOST || '',
clientKey: process.env.NEXT_PUBLIC_GROWTHBOOK_CLIENT_KEY || ''
clientKey: process.env.NEXT_PUBLIC_GROWTHBOOK_CLIENT_KEY || '',
});

if (process.env.NEXT_PUBLIC_GROWTHBOOK_API_HOST && process.env.NEXT_PUBLIC_GROWTHBOOK_CLIENT_KEY) {
Expand Down
2 changes: 1 addition & 1 deletion notes/content-reuse.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Text after

### How to Use Multiple Reusable Content Components

1. You can create a `index.js` file in the `content` directories and export
1. You can create an `index.js` file in the `content` directory and export
the components like this:

```
Expand Down
2 changes: 1 addition & 1 deletion pages/app-developers/tools/build/nft-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ These tools are available on OP Mainnet:
## Feature comparison

<Callout>
This list was last updated early February 2024, but new features are implemented all the time.
This list was last updated in early February 2024, but new features are implemented all the time.
</Callout>

| | NiftyKit | NFT-Inator | Mintplex | Zero Code NFT | thirdweb | Crossmint |
Expand Down
6 changes: 3 additions & 3 deletions pages/app-developers/tools/build/oracles.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
RNG---
title: Oracles
description: >-
Learn about different oracles and how you can use them to access offchain data
onchain as well as random number generation.
onchain as well as for random number generation.
lang: en-US
content_type: guide
topic: oracles
Expand Down Expand Up @@ -48,7 +48,7 @@ There are two types of oracles:
2. Single-transaction oracles, which only require one transaction. The way this works is that the transaction that requests the information includes a callback (address and the call data to provide it).
When the oracle is updated (which also happens through a transaction, but one that is not sent by the user), the oracle uses the callback to inform a contract of the result.

## Random number generation (RGN)
## Random number generation (RNG)

Random number generation in blockchain applications ensures that smart contracts can access unbiased random values. This is essential for certain use cases like generative NFTs, gaming, commit & reveal schemes and more. Various approaches include using a trusted third party, blockhash-based methods, Verifiable Random Functions (VRF), quantum random numbers to name a few. Each method has trade-offs between simplicity, security, and trust assumptions, allowing developers to select the most suitable option for their use case.

Expand Down