Skip to content

Commit

Permalink
fix: change link to /plug-in
Browse files Browse the repository at this point in the history
  • Loading branch information
wikiwong committed Oct 11, 2023
1 parent b8d40d8 commit f28cbbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![crates.io](https://img.shields.io/crates/v/extism_pdk.svg)](https://crates.io/crates/extism-pdk)

This library can be used to write [Extism Plug-ins](https://extism.org/docs/concepts/plugin) in Rust.
This library can be used to write [Extism Plug-ins](https://extism.org/docs/concepts/plug-in) in Rust.

## Install

Expand All @@ -27,7 +27,7 @@ crate_type = ["cdylib"]

## Getting Started

The goal of writing an [Extism plug-in](https://extism.org/docs/concepts/plugin) is to compile your Rust code to a Wasm module with exported functions that the host application can invoke. The first thing you should understand is creating an export. Let's write a simple program that exports a `greet` function which will take a name as a string and return a greeting string. For this, we use the `#[plugin_fn]` macro on our exported function:
The goal of writing an [Extism plug-in](https://extism.org/docs/concepts/plug-in) is to compile your Rust code to a Wasm module with exported functions that the host application can invoke. The first thing you should understand is creating an export. Let's write a simple program that exports a `greet` function which will take a name as a string and return a greeting string. For this, we use the `#[plugin_fn]` macro on our exported function:


```rust
Expand Down

0 comments on commit f28cbbc

Please sign in to comment.