From 041ea0e5ba101a380305549e5a7b479537da5aca Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 17 Nov 2021 21:42:02 -0600 Subject: [PATCH] Small oversight in code sample. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 231abd9..7a307ef 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ This library contains a full implementation of Roblox's DOM, meaning that you ca The `RobloxFile` class inherits from the provided `Instance` class in this library, serving as the root entry point to the contents of the file: ```cs -foreach (Instance descendant in file.GetDescendants()) do +foreach (Instance descendant in file.GetDescendants()) Console.WriteLine(descendant.GetFullName()); ```