diff --git a/README.md b/README.md index 24a0ba2..aca3372 100644 --- a/README.md +++ b/README.md @@ -230,8 +230,11 @@ A script to manage this could look something like this: ```java -// Load a new BdfObject instance -BdfFileManager bdf = new BdfFileManager("hello.bdf"); +/* + Get a new BdfObject instance, it could be existing, + or from another file, BdfArray, or BdfNamedList instance. +*/ +BdfObject bdf = new BdfObject(); // Create the HelloWorld class HelloWorld hello = new HelloWorld(); @@ -251,7 +254,4 @@ hello.hello(); // Save the classes bdf data manager.save(); -// Save the bdf from the manager to a file -bdf.saveDatabase(); - ``` \ No newline at end of file