From 200997e93e2ffa98afe96b9e9bdd89f5feb4060f Mon Sep 17 00:00:00 2001 From: Tyler Date: Wed, 21 Oct 2020 15:58:11 -0500 Subject: [PATCH] Update README.md I know I'm splitting hairs but anonymous objects are strongly typed. I changed the wording to reflect this. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 094527f4..68ea81eb 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ var account = new Account() { Name = "New Account", Description = "New Account D var id = await client.CreateAsync("Account", account); ``` -You can also create with a non-strongly typed object: +You can also create with an anonymously typed object: ```cs var client = new ForceClient(_consumerKey, _consumerSecret, _username, _password);