Skip to content
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

debt: Fix documentation typos highlighted by cspell #76

Merged
merged 2 commits into from
Jan 7, 2025
Merged
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
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ See our [browser automation guide](./guides/browser-automation.mdx).

### How do I share state between steps?

The JavaScript and Ruby impelmentations of Cucumber have the [world object](/docs/cucumber/state/#world-object) for sharing state between steps.
The JavaScript and Ruby implementations of Cucumber have the [world object](/docs/cucumber/state/#world-object) for sharing state between steps.

If you are using Cucumber on the JVM, you can use [dependency injection (DI)](/docs/cucumber/state/#dependency-injection) to share state between steps. If your project already uses a dependency framework supported by Cucumber (and/or you are familiar with one of them), it's probably easiest to use that framework. Otherwise, Picocontainer is the most light weight framework you can use.

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/parallel-execution.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: "Using multiple threads to reduce test times"
This page is only applicable to the JVM implementation of Cucumber.
:::

Cucumber-JVM allows parallel execution across multiple threads since verison 4.0.0.
Cucumber-JVM allows parallel execution across multiple threads since version 4.0.0.

There are several options to incorporate this built-in feature in a Cucumber project. You can do so using:

Expand Down
2 changes: 1 addition & 1 deletion docs/terms/user-story.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
description: "Small increments of value used in planning agile developent work"
description: "Small increments of value used in planning agile development work"
---

# User story
Expand Down
2 changes: 1 addition & 1 deletion docs/tools/related-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ People have written tools on top of Cucumber. These are the known third-party to
| [crb](https://github.com/maiha/crb/wiki) | An irb console for Cucumber world. (crb = cucumber + irb) |
| [Cucable](https://github.com/trivago/cucable-plugin) | Maven plugin that simplifies running Cucumber Scenarios in parallel. |
| [Cucapp](https://github.com/cappuccino/cucapp) | Cucumber integration with Cappuccino. |
| [Cucover](https://github.com/mattwynne/cucover) | Coverage-aware lazy / selective Cucumber Feature runnner |
| [Cucover](https://github.com/mattwynne/cucover) | Coverage-aware lazy / selective Cucumber Feature runner |
| [Cucumber-cpp](https://github.com/cucumber/cucumber-cpp) | Cucumber for C |
| [Cucumber.el](https://github.com/michaelklishin/cucumber.el) | [Emacs](https://www.gnu.org/software/emacs/) mode for editing Cucumber plain text stories. |
| [Cucumber Factory](https://github.com/makandra/cucumber_factory/tree/master) | Create Rails model records without writing Step Definitions. |
Expand Down
Loading