Skip to content

Commit

Permalink
fix: remove invisible character
Browse files Browse the repository at this point in the history
Based on the rest of this code snippet, this character should have never
been here.

Signed-off-by: Randolph Sapp <[email protected]>
  • Loading branch information
StaticRocket committed Dec 4, 2024
1 parent 7f97346 commit f71c50b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ To create a NameServer instance statically, you can add statements similar to th
var nameServerParams = new NameServer.Params;
nameServerParams.maxRuntimeEntries = 10;
nameServerParams.maxNameLen = 32;
var nameServer0 = NameServer.create("nameServer0", nameServerParams);
var nameServer0 = NameServer.create("nameServer0", nameServerParams);

If you want to specify the heap to be used by the NameServer module and a NameServer instance, use configuration statements similar to the following:

Expand Down

0 comments on commit f71c50b

Please sign in to comment.