From dda7514a617836eaac654715beead2d011fe4b86 Mon Sep 17 00:00:00 2001 From: Philippe Pittoli Date: Fri, 3 Feb 2023 04:02:36 +0100 Subject: [PATCH] Crystal bindings: json.cr: s/mother class/root class/ --- zig-impl/crystal/some-crystal-app/src/json.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zig-impl/crystal/some-crystal-app/src/json.cr b/zig-impl/crystal/some-crystal-app/src/json.cr index 5bbfcaa..bc78ab9 100644 --- a/zig-impl/crystal/some-crystal-app/src/json.cr +++ b/zig-impl/crystal/some-crystal-app/src/json.cr @@ -1,6 +1,6 @@ require "json" -# IPC::JSON is the mother class for all exchanged messages (using JSON). +# IPC::JSON is the root class for all exchanged messages (using JSON). # IPC::JSON inherited classes have a common 'type' class attribute, # which enables to find the right IPC::JSON+ class given a TypedMessage's type.