From 98ff36bfedbcca99ac2b2fa175cb4d1333f39712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5var=20N=C3=B8vik?= Date: Mon, 30 Mar 2020 17:04:40 +0200 Subject: [PATCH] Fix typo in Memory.Maximum doc string. (#1432) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Håvar Nøvik --- crates/misc/dotnet/src/Memory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/misc/dotnet/src/Memory.cs b/crates/misc/dotnet/src/Memory.cs index 3138cf9e82..b03e012201 100644 --- a/crates/misc/dotnet/src/Memory.cs +++ b/crates/misc/dotnet/src/Memory.cs @@ -20,7 +20,7 @@ namespace Wasmtime public uint Minimum { get; private set; } /// - /// The minimum memory size (in WebAssembly page units). + /// The maximum memory size (in WebAssembly page units). /// public uint Maximum { get; private set; }