diff --git a/README.nuget.md b/README.nuget.md index 26547c1..16c7a01 100644 --- a/README.nuget.md +++ b/README.nuget.md @@ -32,8 +32,8 @@ SimConnect.NET is currently in beta development. APIs may change, features may b await client.ConnectAsync(); // Get aircraft data - var altitude = await client.SimVarManager.GetAsync("PLANE ALTITUDE", "feet"); - var airspeed = await client.SimVarManager.GetAsync("AIRSPEED INDICATED", "knots"); + var altitude = await client.SimVars.GetAsync("PLANE ALTITUDE", "feet"); + var airspeed = await client.SimVars.GetAsync("AIRSPEED INDICATED", "knots"); Console.WriteLine($"Altitude: {altitude:F0} ft"); Console.WriteLine($"Airspeed: {airspeed:F0} kts");