[Flashforth-devel] patch for typos in main web page (index.html)
Brought to you by:
oh2aun
From: D. J. <fla...@et...> - 2017-07-15 13:09:20
|
Hi, Please find included below and attached a patch for a couple of typos in the main flashforth web page, http://flashforth.com/ I could not see that the web content is in the github repository at https://github.com/oh2aun/flashforth If the content is managed using some tool and that content is version controlled in some way that I can access, please just point me to it and I can generate the patches and--if applicable, a pull-request--against that. In the meantime, I have generated this patch from the index.html file I pulled down with wget. I used git format-patch since HEAD~1 to create the patch. Here also for your reference is a word-diff: diff --git a/index.html b/index.html index f6e7b0b..bfe1b1d 100644 --- a/index.html +++ b/index.html @@ -188,14 +188,14 @@ the header. Interpreting these words will result in an ABORT and restarting the interpreter, that is jumping to QUIT.</P> <P>The compiler performs tail <B>call -> goto</B> optimisation at the end of a word.</P> <P>It is possible to call the word [-beeing-]{+being+} currently defined. <BR>If the word is the last word before ';' it will result in a branch back to beginning of the word. <BR>If the current word is called earlier, it will result in recursion. </P> <H3>The data space </H3> <p>The harvard architecture microcontrollers have separate memory spaces for ram, flash and eeprom.</p> <p>In order to make it possible for words like CMOVE to be used on all kinds of memories, these are mapped into one 64 Kbyte memory space. Like this it is avoided to make separate words for copying [-beteen-]{+between+} different kinds of memories.</p> <P>The memory spaces are mapped by FF in software: </P> <P>PIC18F: and the normally-formatted patch >From 27d79cf810ab0cbef017b1d9e142b27698a52665 Mon Sep 17 00:00:00 2001 From: "D. Joe" <fla...@et...> Date: Sat, 15 Jul 2017 08:46:24 -0400 Subject: [PATCH] correcting two typos --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f6e7b0b..bfe1b1d 100644 --- a/index.html +++ b/index.html @@ -188,14 +188,14 @@ the header. Interpreting these words will result in an ABORT and restarting the interpreter, that is jumping to QUIT.</P> <P>The compiler performs tail <B>call -> goto</B> optimisation at the end of a word.</P> -<P>It is possible to call the word beeing currently defined. <BR>If +<P>It is possible to call the word being currently defined. <BR>If the word is the last word before ';' it will result in a branch back to beginning of the word. <BR>If the current word is called earlier, it will result in recursion. </P> <H3>The data space </H3> <p>The harvard architecture microcontrollers have separate memory spaces for ram, flash and eeprom.</p> -<p>In order to make it possible for words like CMOVE to be used on all kinds of memories, these are mapped into one 64 Kbyte memory space. Like this it is avoided to make separate words for copying beteen different kinds of memories.</p> +<p>In order to make it possible for words like CMOVE to be used on all kinds of memories, these are mapped into one 64 Kbyte memory space. Like this it is avoided to make separate words for copying between different kinds of memories.</p> <P>The memory spaces are mapped by FF in software: </P> <P>PIC18F: -- 2.7.4 Hope that helps, D. Joe |