Small oversight in code sample.

This commit is contained in:
Max 2021-11-17 21:42:02 -06:00 committed by GitHub
parent 80cdc9c8db
commit 041ea0e5ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: 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 ```cs
foreach (Instance descendant in file.GetDescendants()) do foreach (Instance descendant in file.GetDescendants())
Console.WriteLine(descendant.GetFullName()); Console.WriteLine(descendant.GetFullName());
``` ```