Skip to content

Fix typo in demo.md regarding mise usage#8511

Merged
jdx merged 1 commit intojdx:mainfrom
Aurorxa:patch-1
Mar 8, 2026
Merged

Fix typo in demo.md regarding mise usage#8511
jdx merged 1 commit intojdx:mainfrom
Aurorxa:patch-1

Conversation

@Aurorxa
Copy link
Copy Markdown
Contributor

@Aurorxa Aurorxa commented Mar 8, 2026

how you can use mise to install [and] many other tools such as jq, terraform, or go

it should be

how you can use mise to install many other tools such as jq, terraform, or go

how you can use mise to install [and] many other tools such as jq, terraform, or go 

it should be

how you can use mise to install many other tools such as jq, terraform, or go
@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request addresses a minor textual error within the demo.md documentation file. The change improves the grammatical correctness and readability of a sentence that explains how mise can be utilized to install different development tools.

Highlights

  • Documentation Correction: Corrected a grammatical error in docs/demo.md by removing an extraneous 'and' from a sentence describing mise usage for installing various tools.
Changelog
  • docs/demo.md
    • Corrected a grammatical error in a sentence describing mise's tool installation capabilities.
Activity
  • No specific activity (comments, reviews, or progress updates) has been recorded for this pull request yet.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@greptile-apps
Copy link
Copy Markdown
Contributor

greptile-apps bot commented Mar 8, 2026

Greptile Summary

This PR fixes a minor grammar issue in docs/demo.md by removing the extraneous word "and" from the sentence describing what the demo covers, making it read naturally as "how you can use mise to install many other tools such as jq, terraform, or go."

  • Removes the word and from line 6 of docs/demo.md, correcting a grammatically incorrect sentence in the demo introduction.

Confidence Score: 5/5

  • This PR is safe to merge — it is a single-word documentation fix with no functional impact.
  • The change is limited to one word removal in a documentation file with no code, logic, or configuration involved.
  • No files require special attention.

Important Files Changed

Filename Overview
docs/demo.md Removes the extraneous word "and" from line 6, correcting a grammar error in the demo introduction bullet list.

Flowchart

%%{init: {'theme': 'neutral'}}%%
flowchart TD
    A[Demo Introduction] --> B["Run one-off commands\n(mise exec)"]
    A --> C["Install & manage tools\n(mise use)"]
    A --> D["Manage multiple versions\nper project (mise.toml)"]
    B --> E["mise exec node@24 -- node -v"]
    B --> F["mise exec terraform -- terraform -v"]
    C --> G["mise use --global node@lts"]
    C --> H["mise use -g terraform jq go"]
    D --> I["cd myproj && mise use node@23 pnpm@10"]
    D --> J["Leave dir → revert to global version"]
Loading

Last reviewed commit: 48b85d0

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request correctly fixes a typo in docs/demo.md. I've added one suggestion on the changed line to improve the consistency of the documentation with the demo video it describes.

Note: Security Review has been skipped due to the limited scope of the PR.


- how to use `mise exec` to run a command with a specific version of a tool
- how you can use `mise` to install and many other tools such as `jq`, `terraform`, or `go`.
- how you can use `mise` to install many other tools such as `jq`, `terraform`, or `go`.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency with the demo video which also installs bat, it would be clearer to include it in this list. The demo script (docs/tapes/demo.tape) runs mise use -g terraform jq go bat.

As a follow-up, you might also want to update the transcript section of this file to include bat, as it's currently missing there as well.

Suggested change
- how you can use `mise` to install many other tools such as `jq`, `terraform`, or `go`.
- how you can use `mise` to install many other tools such as `terraform`, `jq`, `go`, or `bat`.

@jdx jdx merged commit 3c28b9d into jdx:main Mar 8, 2026
34 of 35 checks passed
jdx pushed a commit that referenced this pull request Mar 9, 2026
### 🐛 Bug Fixes

- **(activate)** reorder shims to front of PATH on re-source in fish by
@jdx in [#8534](#8534)
- **(backend)** strip mise shims from dependency_env PATH to prevent
fork bomb by @pose in [#8475](#8475)
- **(github)** resolve "latest" version correctly via GitHub API by @jdx
in [#8532](#8532)
- **(lock)** set env tags and clarify lockfile docs by @jdx in
[#8519](#8519)
- **(lock)** use separate mise.<env>.lock files instead of env tags by
@jdx in [#8523](#8523)
- **(task)** include args in task output prefix and truncate long
prefixes by @jdx in [#8533](#8533)
- **(task)** only include args in task prefix when disambiguating
duplicates by @jdx in [#8536](#8536)
- **(test)** pin goreleaser version in attestation e2e test by @jdx in
[#8518](#8518)
- **(windows)** env._.source needs to run bash.exe on Windows (fix
#6513) by @pjeby in [#8520](#8520)
- handle locked .exe shims on Windows during reshim by @davireis in
[#8517](#8517)

### 🚜 Refactor

- **(prepare)** remove touch_outputs and update docs to reflect blake3
hashing by @jdx in [#8535](#8535)

### 📚 Documentation

- **(docker)** replace jdxcode/mise image with curl install, update to
debian:13-slim by @jdx in [#8526](#8526)
- fix "gzip: stdin is encrypted" error in shell tricks cookbook by
@pjeby in [#8512](#8512)

### 📦 Registry

- add tigerbeetle
([github:tigerbeetle/tigerbeetle](https://github.com/tigerbeetle/tigerbeetle))
by @risu729 in [#8514](#8514)

### New Contributors

- @pjeby made their first contribution in
[#8520](#8520)
- @davireis made their first contribution in
[#8517](#8517)
- @Aurorxa made their first contribution in
[#8511](#8511)

## 📦 Aqua Registry Updates

#### New Packages (6)

-
[`betterleaks/betterleaks`](https://github.com/betterleaks/betterleaks)
- [`majorcontext/moat`](https://github.com/majorcontext/moat)
- [`princjef/gomarkdoc`](https://github.com/princjef/gomarkdoc)
- [`remko/age-plugin-se`](https://github.com/remko/age-plugin-se)
- [`sudorandom/fauxrpc`](https://github.com/sudorandom/fauxrpc)
- [`swanysimon/mdlint`](https://github.com/swanysimon/mdlint)

#### Updated Packages (1)

- [`moonrepo/moon`](https://github.com/moonrepo/moon)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants