summary refs log tree commit diff stats
path: root/examples/cross_calculator/lazarus
diff options
context:
space:
mode:
authorLynn C. Rees <lcrees@gmail.com>2017-11-15 13:58:11 -0700
committerAndreas Rumpf <rumpf_a@web.de>2017-11-15 21:58:11 +0100
commitac5dff2e04f4f8e2c4aa6537e89d26c2ca09b946 (patch)
tree1ce0f9f39d2e50009881bbc8e0f8ffc88359e8cb /examples/cross_calculator/lazarus
parent5e66a7ce591f8abf2cddeffe8389c53a3183c2a8 (diff)
downloadNim-ac5dff2e04f4f8e2c4aa6537e89d26c2ca09b946.tar.gz
Change expr/stmt in examples to untyped (#6734)
Diffstat (limited to 'examples/cross_calculator/lazarus')
-rw-r--r--examples/cross_calculator/lazarus/unit1.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cross_calculator/lazarus/unit1.pas b/examples/cross_calculator/lazarus/unit1.pas
index aa0ef6cf7..6091a61d3 100644
--- a/examples/cross_calculator/lazarus/unit1.pas
+++ b/examples/cross_calculator/lazarus/unit1.pas
@@ -42,7 +42,7 @@ function myAdd(x, y: longint): longint; cdecl; external;
 
 procedure TForm1.FormCreate(Sender: TObject);
 begin
-  // we initialize the Nimrod data structures here:
+  // we initialize the Nim data structures here:
   NimMain();
 end;