diff --git a/doc/userdoc.org b/doc/userdoc.org index ac20941c98724a913911d3ecd6d604cbb5735a27..58d78e37b7d36b594bc756fa06ffa67c06d24cf5 100644 --- a/doc/userdoc.org +++ b/doc/userdoc.org @@ -433,7 +433,7 @@ change of type in its lifetime. **** Declaration of simple variables -To declare a variable ~v~ of a given type ~V~, one writes +To declare a variable ~v~ of a given type ~V~, one simply writes #+BEGIN_SRC pugs :exports source let v:V; #+END_SRC @@ -475,7 +475,7 @@ already been /declared/, one writes simply #+BEGIN_SRC pugs :exports source v = expression; #+END_SRC -There is not to much to comment, reading is quite natural +There is not too much to comment, reading is quite natural - ~v~ is the variable name, - ~=~ is the affectation operator, - ~expression~ is some code that provides a value of the same type as ~v~