From 30d791725d6071c29c0ea0b2293c9fc00f4af585 Mon Sep 17 00:00:00 2001 From: Burkhard Mittelbach Date: Sat, 17 Jan 2026 12:22:48 +0100 Subject: [PATCH] Fix typo in TUTORIAL.md: 'Expoting' to 'Exporting' --- stabby/TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stabby/TUTORIAL.md b/stabby/TUTORIAL.md index eaab2c8..b08304b 100644 --- a/stabby/TUTORIAL.md +++ b/stabby/TUTORIAL.md @@ -97,7 +97,7 @@ Its core goal is to ensure that even forgetful souls can define dynamic librarie - Compiler-change-proof ABI-stability is proven statically through the type system. - `stabby` also provides an alternative to the standard library's most commonly used types so you don't have to rewrite everything like you do in C. - `stabby` will deny compilation when a type is poorly laid out in memory, letting you worry about more important things instead. -- Expoting functions embeds reports in the produced binaries to allow them to identify mismatching API/ABIs. +- Exporting functions embeds reports in the produced binaries to allow them to identify mismatching API/ABIs. - Importing functions checks these type reports, solving all the problems listed above. `stabby` also ensures that all of Rust's best features are usable accross dynamic linkage with minimal effort, including trait objects, closures and futures.